SlideShare a Scribd company logo
Android
Lists, adapters and recycling
Bibliography
1. Wallace Jackson, Android Apps for Absolute
Beginners, Apress, 2017
2. Hello Views,
http://developer.android.com/guide/tutorials/vi
ews/index.html
3. Android Application Fundamentals,
http://developer.android.com/guide/topics/fun
damentals.html
2
Contents
• MVC
• Lists
– Model
– Adaptor
• List Elements
– Simple
– from XML
• ListActvity
• Optimization
– Recycling
– Tags
– Cache
• GridView
3
Model View Controller
• Pattern
• Splits
– UI
– Program
– Data storage
• Advantages
– Programing with components
– Easier to maintain
• Disadvantages
– May be slow
4
MVC Empirical
Database (Model)
Display (View) Program logic (Controller)
5
MVC Schematics
6
Observer
7
Observator
• Pattern
• Splits
– Observed object
– Observer
• Advantages
– Programming with
components
– Easier to maintain
– Standard way
• Disadvantages
– May be slow
8
Gmail - Notification
New email
9
Specific Activities
• ListActivity
– Specially for a list
– May have other components
– List ID
• android:id=“@android:id/list”
• Special functions
– onListItemClick (…)
– setListAdapter (…)
10
Functioning principle (MVC)
11
Adapter
12
ListView
• A vertical container
– Similar with ScrollView
– Optimized for movement
• Identical components
– Each row
– Almost true ;)
• Adapter’s role
– Creates these components
• Events
– setOnItemClickListener (…)
– setOnItemLongClickListener (…)
13
Adapter
• Part of View
• Specifies the way of
display
– Adapts the data
– Modifies the View
14
ListView Adapter
• Predefined
– ArrayAdapter
• User defined
– Implementation of ListAdapter
– Extend BaseAdapter
15
Usage of ArrayAdapter (XML)
• Example
– Static list
16
Usage of ArrayAdapter (Java)
• Example
– Static List
17
Usage of ArrayAdapter (XML)
• Example
– Dynamic List
18
Usage of ArrayAdapter (Java)
19
A simple list
• ListView
– Contains a list
– android:id=“@android:id/list”
• Elements of the list
– android.R.layout.simple_list_item_1
• Static
– May use String[]
• Dynamic
– Use ArrayList<String>
20
The List with complex elements
• Elements
– Components
• EditView
• ImageView
• Container
• Adapter custom-made
– Implement ListAdapter
– Extend BaseAdapter
21
Extend BaseAdapter
• View getView (int position, View convertView,
ViewGroup list)
• int getCount ()
• Object getItem (int position)
• long getItemId (int position)
• int getViewTypeCount ()
• int getItemViewType (int position)
22
Extend BaseAdapter (XML)
23
Extend BaseAdapter (Java)
24
Extend BaseAdapter (Java)
25
Extend BaseAdapter (Java)
26
Extend BaseAdapter (Java)
27
Recycling
• Objects reusage
• Avoid object creation
– new is bad for memory!
• Use
– Buffers
– Lists
28
Optimisation
Inefficient!!!
29
Optimisation
Recycling
30
Different types of elements?
int getViewTypeCount ()
int getItemViewType (int position)
31
One more problem
Slow!!!
32
Tags (for View)
• void setTag (Object tag)
• Object getTag ()
33
Efficient using Tag
Utilizarea tag-ului
34
GridView
• Identical with ListView
– Extend BaseAdapater
35
The new RecyclerView
• A new way of building lists
– Uses several layouts
• Not just a LinearLayout
– The developer has to use recycling and tagging
• Extend RecyclerView.Adapter
– onCreateViewHolder()
• Inflate the view
– onBindViewHolder()
• Set the View’s data
– getItemCount()
36
Conclusions
• Lists
– Linear containers
– Contain components
• Including containers
• ListActivity
– Activity with special functions for list
• Adapter
– Formats the data from the model for the list
– Simple
– Custom made
– Recycling of elements
• Elements
– Described in XML
37
Keywords
• MVC
• Adaptor
• Classes
– ListActivity
– ListView
– GridView
– View
– ArrayAdapter
– BaseAdapter
– ArrayList
• Interfaces
– ListAdapter
• Recycling
• Tags
38
Questions
39

More Related Content

Similar to MDAD 5 - Android - Lists, adapters and recycling (20)

PDF
Lab2-android
Lilia Sfaxi
 
PDF
Day 8: Dealing with Lists and ListViews
Ahsanul Karim
 
PDF
List Views
Ahsanul Karim
 
PPTX
Day 5 android app code advancement
FatimaYousif11
 
PDF
Day 8: Dealing with Lists and ListViews
Ahsanul Karim
 
PPTX
chp 4 UI component hdjdjdduudfinalt.pptx
Good490110
 
PPT
Hello Android
Trong Dinh
 
PDF
Android UI Development: Tips, Tricks, and Techniques
Edgar Gonzalez
 
PDF
Android UI Tips, Tricks and Techniques
Marakana Inc.
 
PPTX
ListView RecyclerView.pptx
OmakoiMalang
 
PPTX
Introduction to Listview in Android
technoguff
 
PPT
Lecture Slides for List Views [Android ]
Nehil Jain
 
PDF
Adapter and cache technique
Hoang Vy Nguyen
 
PPT
Android ListView and Custom ListView
Sourabh Sahu
 
PPTX
Android Chapter 4 part2 Types of View and View group
VaibhavSarode16
 
DOCX
Android list view tutorial by Javatechig
Javatechig Resources for Developers
 
PPTX
Lecture 4: Android All Kinds of Lists.pptx
Yousef Alamir
 
PDF
Android - Build User Interface
MingHo Chang
 
PDF
HIT3328 - Chapter0601 - Menus and Lists
Yhal Htet Aung
 
Lab2-android
Lilia Sfaxi
 
Day 8: Dealing with Lists and ListViews
Ahsanul Karim
 
List Views
Ahsanul Karim
 
Day 5 android app code advancement
FatimaYousif11
 
Day 8: Dealing with Lists and ListViews
Ahsanul Karim
 
chp 4 UI component hdjdjdduudfinalt.pptx
Good490110
 
Hello Android
Trong Dinh
 
Android UI Development: Tips, Tricks, and Techniques
Edgar Gonzalez
 
Android UI Tips, Tricks and Techniques
Marakana Inc.
 
ListView RecyclerView.pptx
OmakoiMalang
 
Introduction to Listview in Android
technoguff
 
Lecture Slides for List Views [Android ]
Nehil Jain
 
Adapter and cache technique
Hoang Vy Nguyen
 
Android ListView and Custom ListView
Sourabh Sahu
 
Android Chapter 4 part2 Types of View and View group
VaibhavSarode16
 
Android list view tutorial by Javatechig
Javatechig Resources for Developers
 
Lecture 4: Android All Kinds of Lists.pptx
Yousef Alamir
 
Android - Build User Interface
MingHo Chang
 
HIT3328 - Chapter0601 - Menus and Lists
Yhal Htet Aung
 

More from Alexandru Radovici (20)

PPTX
SdE2 - Pilot Tock
Alexandru Radovici
 
PPTX
SdE2 - Systèmes embarquées
Alexandru Radovici
 
PPTX
SdE2 - Planification, IPC
Alexandru Radovici
 
PPTX
ALF1 - Introduction
Alexandru Radovici
 
PPTX
SdE2 - Introduction
Alexandru Radovici
 
PPTX
MDAD 6 - AIDL and Services
Alexandru Radovici
 
PPTX
MDAD 5 - Threads
Alexandru Radovici
 
PPTX
MDAD 1 - Hardware
Alexandru Radovici
 
PPTX
MDAD 0 - Introduction
Alexandru Radovici
 
PPTX
SdE 11 - Reseau
Alexandru Radovici
 
PPTX
SdE 10 - Threads
Alexandru Radovici
 
PPTX
SdE 8 - Synchronisation de execution
Alexandru Radovici
 
PPTX
SdE 8 - Memoire Virtuelle
Alexandru Radovici
 
PPTX
SdE 7 - Gestion de la Mémoire
Alexandru Radovici
 
PPTX
SdE 6 - Planification
Alexandru Radovici
 
PPTX
SdE 5 - Planification
Alexandru Radovici
 
PPTX
ALF 6 - Parser
Alexandru Radovici
 
PPTX
ALF 5 - Parser
Alexandru Radovici
 
PPTX
ALF 4 - Grammaires
Alexandru Radovici
 
PPTX
ALF 3 - Expressions régulières et Lexer
Alexandru Radovici
 
SdE2 - Pilot Tock
Alexandru Radovici
 
SdE2 - Systèmes embarquées
Alexandru Radovici
 
SdE2 - Planification, IPC
Alexandru Radovici
 
ALF1 - Introduction
Alexandru Radovici
 
SdE2 - Introduction
Alexandru Radovici
 
MDAD 6 - AIDL and Services
Alexandru Radovici
 
MDAD 5 - Threads
Alexandru Radovici
 
MDAD 1 - Hardware
Alexandru Radovici
 
MDAD 0 - Introduction
Alexandru Radovici
 
SdE 11 - Reseau
Alexandru Radovici
 
SdE 10 - Threads
Alexandru Radovici
 
SdE 8 - Synchronisation de execution
Alexandru Radovici
 
SdE 8 - Memoire Virtuelle
Alexandru Radovici
 
SdE 7 - Gestion de la Mémoire
Alexandru Radovici
 
SdE 6 - Planification
Alexandru Radovici
 
SdE 5 - Planification
Alexandru Radovici
 
ALF 6 - Parser
Alexandru Radovici
 
ALF 5 - Parser
Alexandru Radovici
 
ALF 4 - Grammaires
Alexandru Radovici
 
ALF 3 - Expressions régulières et Lexer
Alexandru Radovici
 
Ad

Recently uploaded (20)

PDF
Antianginal agents, Definition, Classification, MOA.pdf
Prerana Jadhav
 
PDF
The-Invisible-Living-World-Beyond-Our-Naked-Eye chapter 2.pdf/8th science cur...
Sandeep Swamy
 
DOCX
Unit 5: Speech-language and swallowing disorders
JELLA VISHNU DURGA PRASAD
 
PPTX
Python-Application-in-Drug-Design by R D Jawarkar.pptx
Rahul Jawarkar
 
PPTX
Cleaning Validation Ppt Pharmaceutical validation
Ms. Ashatai Patil
 
PPTX
Command Palatte in Odoo 18.1 Spreadsheet - Odoo Slides
Celine George
 
PPTX
Introduction to Probability(basic) .pptx
purohitanuj034
 
PPTX
Unlock the Power of Cursor AI: MuleSoft Integrations
Veera Pallapu
 
PPTX
INTESTINALPARASITES OR WORM INFESTATIONS.pptx
PRADEEP ABOTHU
 
PPTX
Introduction to pediatric nursing in 5th Sem..pptx
AneetaSharma15
 
PPTX
K-Circle-Weekly-Quiz12121212-May2025.pptx
Pankaj Rodey
 
PPTX
How to Close Subscription in Odoo 18 - Odoo Slides
Celine George
 
PPTX
Translation_ Definition, Scope & Historical Development.pptx
DhatriParmar
 
PPTX
I INCLUDED THIS TOPIC IS INTELLIGENCE DEFINITION, MEANING, INDIVIDUAL DIFFERE...
parmarjuli1412
 
PPTX
How to Track Skills & Contracts Using Odoo 18 Employee
Celine George
 
PPTX
CONCEPT OF CHILD CARE. pptx
AneetaSharma15
 
PPTX
Digital Professionalism and Interpersonal Competence
rutvikgediya1
 
PDF
John Keats introduction and list of his important works
vatsalacpr
 
PDF
BÀI TẬP TEST BỔ TRỢ THEO TỪNG CHỦ ĐỀ CỦA TỪNG UNIT KÈM BÀI TẬP NGHE - TIẾNG A...
Nguyen Thanh Tu Collection
 
PPTX
YSPH VMOC Special Report - Measles Outbreak Southwest US 7-20-2025.pptx
Yale School of Public Health - The Virtual Medical Operations Center (VMOC)
 
Antianginal agents, Definition, Classification, MOA.pdf
Prerana Jadhav
 
The-Invisible-Living-World-Beyond-Our-Naked-Eye chapter 2.pdf/8th science cur...
Sandeep Swamy
 
Unit 5: Speech-language and swallowing disorders
JELLA VISHNU DURGA PRASAD
 
Python-Application-in-Drug-Design by R D Jawarkar.pptx
Rahul Jawarkar
 
Cleaning Validation Ppt Pharmaceutical validation
Ms. Ashatai Patil
 
Command Palatte in Odoo 18.1 Spreadsheet - Odoo Slides
Celine George
 
Introduction to Probability(basic) .pptx
purohitanuj034
 
Unlock the Power of Cursor AI: MuleSoft Integrations
Veera Pallapu
 
INTESTINALPARASITES OR WORM INFESTATIONS.pptx
PRADEEP ABOTHU
 
Introduction to pediatric nursing in 5th Sem..pptx
AneetaSharma15
 
K-Circle-Weekly-Quiz12121212-May2025.pptx
Pankaj Rodey
 
How to Close Subscription in Odoo 18 - Odoo Slides
Celine George
 
Translation_ Definition, Scope & Historical Development.pptx
DhatriParmar
 
I INCLUDED THIS TOPIC IS INTELLIGENCE DEFINITION, MEANING, INDIVIDUAL DIFFERE...
parmarjuli1412
 
How to Track Skills & Contracts Using Odoo 18 Employee
Celine George
 
CONCEPT OF CHILD CARE. pptx
AneetaSharma15
 
Digital Professionalism and Interpersonal Competence
rutvikgediya1
 
John Keats introduction and list of his important works
vatsalacpr
 
BÀI TẬP TEST BỔ TRỢ THEO TỪNG CHỦ ĐỀ CỦA TỪNG UNIT KÈM BÀI TẬP NGHE - TIẾNG A...
Nguyen Thanh Tu Collection
 
YSPH VMOC Special Report - Measles Outbreak Southwest US 7-20-2025.pptx
Yale School of Public Health - The Virtual Medical Operations Center (VMOC)
 
Ad

MDAD 5 - Android - Lists, adapters and recycling