SlideShare a Scribd company logo
6
Most read
12
Most read
21
Most read
fb.com/technoguff @technoguff
In this session
• Introduction to ListView
• Introduction to simple List Adapters
Adapter Views
• Android widgets used to display collection of data.
• Adapter Views use adapters for managing data
• Examples of adapter views are
 Spinner,
 ListView,
 Gallery(deprecated in API level 16),
 GridView.
AdapterView Hierarchy
gallery is deprecated since API Level 16
Flow Diagram
Data Source
Database Cursor
ArrayList, Arrays etc.
Adapte
r
ListView
Adapter
• An Adapter object acts as a bridge between an
AdapterView and the underlying data for that view.
Adapters
• BaseAdapter
- provides data model for list
- converts data into fields of the list
- extended by all adapters
• ArrayAdapter
• SimpleCursorAdapter
• Custom Adapter
ArrayAdapter
• handles data based on Arrays or java.util.List
• A view capable of displaying scrollable list of
items
• Creates Views only when needed
• Recycles Views
ListView
ListView example from Laodshedding+ app
Choice Mode
• CHOICE_MODE_NONE
• CHOICE_MODE_SINGLE
• CHOICE_MODE_MULTIPLE
Using ListView
• Declare our ListView in our layout.xml
• Create our Adapter class
• Fetch the items for our list
• Specify the layout that we want for our list items
• Plug our Adapter with our declared Listview
Implementing ListView using
ArrayAdapter
• 1) Add ListView to Activity Layout
•
Implementing ListView…
• prepare adapter
• Set adapter
Using Custom Adapter
• Create a layout of custom View for list item
• Create an instance of an adapter
• Override various methods inside the adapter class
such as , getView(), getCount() etc.
• Set the custom adapter to the listView.
ViewHolder Pattern
• in a long list findViewById() might be called frequently
during the scrolling of ListView, which slows down the
performance
• ViewHolder comes handy in such case.
• A ViewHolder object stores each of the component
views inside the tag field of the Layout, so you can
immediately access them without the need to look them
up repeatedly.
Listeners
• setOnItemClickListener
• setOnItemLongClickListener
• setOnItemSelectedListener
• setOnScrollListener
Headers & Footers
• addHeaderView
- Add a fixed view to appear at the top of the list.
• addFooterView
- Add a fixed view to appear at the bottom of the list.
Adding HeaderView or
FooterView
• Prepare layout for header or footer
• Inflate the layout
• add the view using addHeaderView() method
ListActivity
• If displaying list is primary purpose, ListActivity is
used.
• displays a list of items by binding to a data
source(array, cursor).
• Exposes event handlers when the user selects an
item
ListActivitiy
• Simplifies the handling of ListView
• Set List Adapter in the onCreate() method using
setListAdapter()
• Register click by onListItemClick()
Thank You
And tutorial at
Find source code of ListView Example on
http://blog.technoguff.com/2015/07/introductio
n-to-listview.html
https://github.com/technoguff/L
istViewExample
Ad

Recommended

Collections In Java
Collections In Java
Binoj T E
 
android menus
android menus
Deepa Rani
 
Ado.Net Tutorial
Ado.Net Tutorial
prabhu rajendran
 
two tier and three tier
two tier and three tier
Kashafnaz2
 
Android intents
Android intents
Siva Ramakrishna kv
 
Delegates and events in C#
Delegates and events in C#
Dr.Neeraj Kumar Pandey
 
Java Collections
Java Collections
parag
 
Java Collection framework
Java Collection framework
ankitgarg_er
 
Dbms 14: Relational Calculus
Dbms 14: Relational Calculus
Amiya9439793168
 
Android ui dialog
Android ui dialog
Krazy Koder
 
Hadoop And Their Ecosystem ppt
Hadoop And Their Ecosystem ppt
sunera pathan
 
Collections and its types in C# (with examples)
Collections and its types in C# (with examples)
Aijaz Ali Abro
 
Collections in Java Notes
Collections in Java Notes
Shalabh Chaudhary
 
Data cubes
Data cubes
Mohammed
 
android sqlite
android sqlite
Deepa Rani
 
Java collections concept
Java collections concept
kumar gaurav
 
Servlets
Servlets
ZainabNoorGul
 
Java - Collections framework
Java - Collections framework
Riccardo Cardin
 
Hive(ppt)
Hive(ppt)
Abhinav Tyagi
 
Android resource
Android resource
Krazy Koder
 
Java Collections Framework
Java Collections Framework
Sony India Software Center
 
Collections framework in java
Collections framework in java
yugandhar vadlamudi
 
Map Reduce
Map Reduce
Prashant Gupta
 
ADO.NET
ADO.NET
Farzad Wadia
 
Android - Android Intent Types
Android - Android Intent Types
Vibrant Technologies & Computers
 
Major issues in data mining
Major issues in data mining
Slideshare
 
PHP variables
PHP variables
Siddique Ibrahim
 
Java Servlets
Java Servlets
BG Java EE Course
 
Android development - ListView & Adapter
Android development - ListView & Adapter
Lope Emano
 
ListView and Custom ListView on Android Development [Thai]
ListView and Custom ListView on Android Development [Thai]
Somkiat Khitwongwattana
 

More Related Content

What's hot (20)

Dbms 14: Relational Calculus
Dbms 14: Relational Calculus
Amiya9439793168
 
Android ui dialog
Android ui dialog
Krazy Koder
 
Hadoop And Their Ecosystem ppt
Hadoop And Their Ecosystem ppt
sunera pathan
 
Collections and its types in C# (with examples)
Collections and its types in C# (with examples)
Aijaz Ali Abro
 
Collections in Java Notes
Collections in Java Notes
Shalabh Chaudhary
 
Data cubes
Data cubes
Mohammed
 
android sqlite
android sqlite
Deepa Rani
 
Java collections concept
Java collections concept
kumar gaurav
 
Servlets
Servlets
ZainabNoorGul
 
Java - Collections framework
Java - Collections framework
Riccardo Cardin
 
Hive(ppt)
Hive(ppt)
Abhinav Tyagi
 
Android resource
Android resource
Krazy Koder
 
Java Collections Framework
Java Collections Framework
Sony India Software Center
 
Collections framework in java
Collections framework in java
yugandhar vadlamudi
 
Map Reduce
Map Reduce
Prashant Gupta
 
ADO.NET
ADO.NET
Farzad Wadia
 
Android - Android Intent Types
Android - Android Intent Types
Vibrant Technologies & Computers
 
Major issues in data mining
Major issues in data mining
Slideshare
 
PHP variables
PHP variables
Siddique Ibrahim
 
Java Servlets
Java Servlets
BG Java EE Course
 

Viewers also liked (20)

Android development - ListView & Adapter
Android development - ListView & Adapter
Lope Emano
 
ListView and Custom ListView on Android Development [Thai]
ListView and Custom ListView on Android Development [Thai]
Somkiat Khitwongwattana
 
Lecture Slides for List Views [Android ]
Lecture Slides for List Views [Android ]
Nehil Jain
 
Adapter & ListView & ExpandalbeListView
Adapter & ListView & ExpandalbeListView
Yuki Anzai
 
Android Training (AdapterView & Adapter)
Android Training (AdapterView & Adapter)
Khaled Anaqwa
 
Android tutorial points
Android tutorial points
bsb_2209
 
Android Application Fundamentals.
Android Application Fundamentals.
Skillwise Consulting
 
Android custom listview
Android custom listview
parmistech
 
Android Data Persistence
Android Data Persistence
Romain Rochegude
 
What's new in Google Play Services @ I/O Rewind Bangkok
What's new in Google Play Services @ I/O Rewind Bangkok
Somkiat Khitwongwattana
 
Interface Design for Mobile Application
Interface Design for Mobile Application
Somkiat Khitwongwattana
 
Whats new in Android Development Tools @ I/O Rewind Bangkok
Whats new in Android Development Tools @ I/O Rewind Bangkok
Somkiat Khitwongwattana
 
Session 2- day 3
Session 2- day 3
Vivek Bhusal
 
Persistence in Android
Persistence in Android
ma-polimi
 
Android Custom view
Android Custom view
Theodore(Yongbin) Cha
 
Painless Persistence in a Disconnected World
Painless Persistence in a Disconnected World
Christian Melchior
 
Google android Activity lifecycle
Google android Activity lifecycle
University of Potsdam
 
Smart Lock for Password @ Game DevFest Bangkok 2015
Smart Lock for Password @ Game DevFest Bangkok 2015
Somkiat Khitwongwattana
 
Open Ldap Integration and Configuration with Lifray 6.2
Open Ldap Integration and Configuration with Lifray 6.2
Vinaykumar Hebballi
 
Json vs Gson vs Jackson
Json vs Gson vs Jackson
Vinaykumar Hebballi
 
Android development - ListView & Adapter
Android development - ListView & Adapter
Lope Emano
 
ListView and Custom ListView on Android Development [Thai]
ListView and Custom ListView on Android Development [Thai]
Somkiat Khitwongwattana
 
Lecture Slides for List Views [Android ]
Lecture Slides for List Views [Android ]
Nehil Jain
 
Adapter & ListView & ExpandalbeListView
Adapter & ListView & ExpandalbeListView
Yuki Anzai
 
Android Training (AdapterView & Adapter)
Android Training (AdapterView & Adapter)
Khaled Anaqwa
 
Android tutorial points
Android tutorial points
bsb_2209
 
Android custom listview
Android custom listview
parmistech
 
What's new in Google Play Services @ I/O Rewind Bangkok
What's new in Google Play Services @ I/O Rewind Bangkok
Somkiat Khitwongwattana
 
Whats new in Android Development Tools @ I/O Rewind Bangkok
Whats new in Android Development Tools @ I/O Rewind Bangkok
Somkiat Khitwongwattana
 
Persistence in Android
Persistence in Android
ma-polimi
 
Painless Persistence in a Disconnected World
Painless Persistence in a Disconnected World
Christian Melchior
 
Smart Lock for Password @ Game DevFest Bangkok 2015
Smart Lock for Password @ Game DevFest Bangkok 2015
Somkiat Khitwongwattana
 
Open Ldap Integration and Configuration with Lifray 6.2
Open Ldap Integration and Configuration with Lifray 6.2
Vinaykumar Hebballi
 
Ad

Similar to Introduction to Listview in Android (20)

Android adapters
Android adapters
baabtra.com - No. 1 supplier of quality freshers
 
Day 8: Dealing with Lists and ListViews
Day 8: Dealing with Lists and ListViews
Ahsanul Karim
 
Lab2-android
Lab2-android
Lilia Sfaxi
 
Android ui adapter
Android ui adapter
Krazy Koder
 
List Views
List Views
Ahsanul Karim
 
chp 4 UI component hdjdjdduudfinalt.pptx
chp 4 UI component hdjdjdduudfinalt.pptx
Good490110
 
Android course Lesson2
Android course Lesson2
3sidedcube
 
Android App Development - 11 Lists, grids, adapters, dialogs and toasts
Android App Development - 11 Lists, grids, adapters, dialogs and toasts
Diego Grancini
 
Android - Build User Interface
Android - Build User Interface
MingHo Chang
 
Listview and Adapter
Listview and Adapter
Arif Huda
 
MDAD 4 - Lists, adapters and recycling
MDAD 4 - Lists, adapters and recycling
Alexandru Radovici
 
Dinosaurs and Androids: The Listview Evolution
Dinosaurs and Androids: The Listview Evolution
Fernando Cejas
 
Day 5 android app code advancement
Day 5 android app code advancement
FatimaYousif11
 
List view3
List view3
Vishal Dutt
 
MDAD 5 - Android - Lists, adapters and recycling
MDAD 5 - Android - Lists, adapters and recycling
Alexandru Radovici
 
Android bootcamp 2013 Lists & Adapter
Android bootcamp 2013 Lists & Adapter
Hasan Hosgel
 
Adapter and cache technique
Adapter and cache technique
Hoang Vy Nguyen
 
ListView RecyclerView.pptx
ListView RecyclerView.pptx
OmakoiMalang
 
HIT3328 - Chapter0601 - Menus and Lists
HIT3328 - Chapter0601 - Menus and Lists
Yhal Htet Aung
 
Android ListView and Custom ListView
Android ListView and Custom ListView
Sourabh Sahu
 
Day 8: Dealing with Lists and ListViews
Day 8: Dealing with Lists and ListViews
Ahsanul Karim
 
Android ui adapter
Android ui adapter
Krazy Koder
 
chp 4 UI component hdjdjdduudfinalt.pptx
chp 4 UI component hdjdjdduudfinalt.pptx
Good490110
 
Android course Lesson2
Android course Lesson2
3sidedcube
 
Android App Development - 11 Lists, grids, adapters, dialogs and toasts
Android App Development - 11 Lists, grids, adapters, dialogs and toasts
Diego Grancini
 
Android - Build User Interface
Android - Build User Interface
MingHo Chang
 
Listview and Adapter
Listview and Adapter
Arif Huda
 
MDAD 4 - Lists, adapters and recycling
MDAD 4 - Lists, adapters and recycling
Alexandru Radovici
 
Dinosaurs and Androids: The Listview Evolution
Dinosaurs and Androids: The Listview Evolution
Fernando Cejas
 
Day 5 android app code advancement
Day 5 android app code advancement
FatimaYousif11
 
MDAD 5 - Android - Lists, adapters and recycling
MDAD 5 - Android - Lists, adapters and recycling
Alexandru Radovici
 
Android bootcamp 2013 Lists & Adapter
Android bootcamp 2013 Lists & Adapter
Hasan Hosgel
 
Adapter and cache technique
Adapter and cache technique
Hoang Vy Nguyen
 
ListView RecyclerView.pptx
ListView RecyclerView.pptx
OmakoiMalang
 
HIT3328 - Chapter0601 - Menus and Lists
HIT3328 - Chapter0601 - Menus and Lists
Yhal Htet Aung
 
Android ListView and Custom ListView
Android ListView and Custom ListView
Sourabh Sahu
 
Ad

Recently uploaded (20)

Securing AI - There Is No Try, Only Do!.pdf
Securing AI - There Is No Try, Only Do!.pdf
Priyanka Aash
 
"Database isolation: how we deal with hundreds of direct connections to the d...
"Database isolation: how we deal with hundreds of direct connections to the d...
Fwdays
 
Techniques for Automatic Device Identification and Network Assignment.pdf
Techniques for Automatic Device Identification and Network Assignment.pdf
Priyanka Aash
 
Security Tips for Enterprise Azure Solutions
Security Tips for Enterprise Azure Solutions
Michele Leroux Bustamante
 
AI VIDEO MAGAZINE - June 2025 - r/aivideo
AI VIDEO MAGAZINE - June 2025 - r/aivideo
1pcity Studios, Inc
 
FIDO Seminar: Authentication for a Billion Consumers - Amazon.pptx
FIDO Seminar: Authentication for a Billion Consumers - Amazon.pptx
FIDO Alliance
 
PyCon SG 25 - Firecracker Made Easy with Python.pdf
PyCon SG 25 - Firecracker Made Easy with Python.pdf
Muhammad Yuga Nugraha
 
FIDO Seminar: New Data: Passkey Adoption in the Workforce.pptx
FIDO Seminar: New Data: Passkey Adoption in the Workforce.pptx
FIDO Alliance
 
Lessons Learned from Developing Secure AI Workflows.pdf
Lessons Learned from Developing Secure AI Workflows.pdf
Priyanka Aash
 
Information Security Response Team Nepal_npCERT_Vice_President_Sudan_Jha.pdf
Information Security Response Team Nepal_npCERT_Vice_President_Sudan_Jha.pdf
ICT Frame Magazine Pvt. Ltd.
 
Creating Inclusive Digital Learning with AI: A Smarter, Fairer Future
Creating Inclusive Digital Learning with AI: A Smarter, Fairer Future
Impelsys Inc.
 
OpenACC and Open Hackathons Monthly Highlights June 2025
OpenACC and Open Hackathons Monthly Highlights June 2025
OpenACC
 
FIDO Seminar: Perspectives on Passkeys & Consumer Adoption.pptx
FIDO Seminar: Perspectives on Passkeys & Consumer Adoption.pptx
FIDO Alliance
 
OpenPOWER Foundation & Open-Source Core Innovations
OpenPOWER Foundation & Open-Source Core Innovations
IBM
 
AI vs Human Writing: Can You Tell the Difference?
AI vs Human Writing: Can You Tell the Difference?
Shashi Sathyanarayana, Ph.D
 
Powering Multi-Page Web Applications Using Flow Apps and FME Data Streaming
Powering Multi-Page Web Applications Using Flow Apps and FME Data Streaming
Safe Software
 
FIDO Seminar: Targeting Trust: The Future of Identity in the Workforce.pptx
FIDO Seminar: Targeting Trust: The Future of Identity in the Workforce.pptx
FIDO Alliance
 
War_And_Cyber_3_Years_Of_Struggle_And_Lessons_For_Global_Security.pdf
War_And_Cyber_3_Years_Of_Struggle_And_Lessons_For_Global_Security.pdf
biswajitbanerjee38
 
“Key Requirements to Successfully Implement Generative AI in Edge Devices—Opt...
“Key Requirements to Successfully Implement Generative AI in Edge Devices—Opt...
Edge AI and Vision Alliance
 
Improving Data Integrity: Synchronization between EAM and ArcGIS Utility Netw...
Improving Data Integrity: Synchronization between EAM and ArcGIS Utility Netw...
Safe Software
 
Securing AI - There Is No Try, Only Do!.pdf
Securing AI - There Is No Try, Only Do!.pdf
Priyanka Aash
 
"Database isolation: how we deal with hundreds of direct connections to the d...
"Database isolation: how we deal with hundreds of direct connections to the d...
Fwdays
 
Techniques for Automatic Device Identification and Network Assignment.pdf
Techniques for Automatic Device Identification and Network Assignment.pdf
Priyanka Aash
 
Security Tips for Enterprise Azure Solutions
Security Tips for Enterprise Azure Solutions
Michele Leroux Bustamante
 
AI VIDEO MAGAZINE - June 2025 - r/aivideo
AI VIDEO MAGAZINE - June 2025 - r/aivideo
1pcity Studios, Inc
 
FIDO Seminar: Authentication for a Billion Consumers - Amazon.pptx
FIDO Seminar: Authentication for a Billion Consumers - Amazon.pptx
FIDO Alliance
 
PyCon SG 25 - Firecracker Made Easy with Python.pdf
PyCon SG 25 - Firecracker Made Easy with Python.pdf
Muhammad Yuga Nugraha
 
FIDO Seminar: New Data: Passkey Adoption in the Workforce.pptx
FIDO Seminar: New Data: Passkey Adoption in the Workforce.pptx
FIDO Alliance
 
Lessons Learned from Developing Secure AI Workflows.pdf
Lessons Learned from Developing Secure AI Workflows.pdf
Priyanka Aash
 
Information Security Response Team Nepal_npCERT_Vice_President_Sudan_Jha.pdf
Information Security Response Team Nepal_npCERT_Vice_President_Sudan_Jha.pdf
ICT Frame Magazine Pvt. Ltd.
 
Creating Inclusive Digital Learning with AI: A Smarter, Fairer Future
Creating Inclusive Digital Learning with AI: A Smarter, Fairer Future
Impelsys Inc.
 
OpenACC and Open Hackathons Monthly Highlights June 2025
OpenACC and Open Hackathons Monthly Highlights June 2025
OpenACC
 
FIDO Seminar: Perspectives on Passkeys & Consumer Adoption.pptx
FIDO Seminar: Perspectives on Passkeys & Consumer Adoption.pptx
FIDO Alliance
 
OpenPOWER Foundation & Open-Source Core Innovations
OpenPOWER Foundation & Open-Source Core Innovations
IBM
 
AI vs Human Writing: Can You Tell the Difference?
AI vs Human Writing: Can You Tell the Difference?
Shashi Sathyanarayana, Ph.D
 
Powering Multi-Page Web Applications Using Flow Apps and FME Data Streaming
Powering Multi-Page Web Applications Using Flow Apps and FME Data Streaming
Safe Software
 
FIDO Seminar: Targeting Trust: The Future of Identity in the Workforce.pptx
FIDO Seminar: Targeting Trust: The Future of Identity in the Workforce.pptx
FIDO Alliance
 
War_And_Cyber_3_Years_Of_Struggle_And_Lessons_For_Global_Security.pdf
War_And_Cyber_3_Years_Of_Struggle_And_Lessons_For_Global_Security.pdf
biswajitbanerjee38
 
“Key Requirements to Successfully Implement Generative AI in Edge Devices—Opt...
“Key Requirements to Successfully Implement Generative AI in Edge Devices—Opt...
Edge AI and Vision Alliance
 
Improving Data Integrity: Synchronization between EAM and ArcGIS Utility Netw...
Improving Data Integrity: Synchronization between EAM and ArcGIS Utility Netw...
Safe Software
 

Introduction to Listview in Android