SlideShare a Scribd company logo
ANTONIS KALIPETIS - MOBILE LEAD, SOURCELAIR
KALIPETIS@SOURCELAIR.COM, @AKALIPETIS

ANDROID WORKSHOP 2
W H AT W E ’ L L C O V E R T O D AY
• Layouts and Views in Android
• MVC - Model View Controller
• Creating a model
• Lists, lists, lists
• Creating an adapter
• Making everything work
L AY O U T S A N D V I E W S I N A N D R O I D
• Layouts
• XML syntax
• Standard XML fields for Android
• Differentiation per device or config
• For views, let’s stick with stock!
MODEL

• Contains everything we

need to represent our data
• Has helper methods
• Nothing more!
THE PHOTOSET MODEL

• Title - The title of the photoset
• Description - The description of the photoset
• ID - The unique identifier of this photoset
View
H O W D O W E R E P R E S E N T D ATA
LISTVIEW
ADAPTERS

• Match data with views
• Used by list views to populate their rows
WE NEED A CONTROLLER NOW

OUR ACTIVITY
W I T H S O M E T E S T D A TA . . .

MAKING EVERYTHING
WORK

More Related Content

PPTX
Muffin - An Umbraco Foundation
PDF
Serverlessなものを使ってサービスを作っている話
PPTX
Take a stand_citingsources
PDF
EESTEC Android Workshops - 103 The Internet and JSON
PDF
EESTEC Android Workshops - Recap
PPT
Celiac disease
PPT
Rectangle by jessie and payton
PPT
Circle matthew hrishi
Muffin - An Umbraco Foundation
Serverlessなものを使ってサービスを作っている話
Take a stand_citingsources
EESTEC Android Workshops - 103 The Internet and JSON
EESTEC Android Workshops - Recap
Celiac disease
Rectangle by jessie and payton
Circle matthew hrishi

Similar to EESTEC Android Workshop 2 (20)

PPTX
Day 5 android app code advancement
PPTX
Introduction to Listview in Android
PPTX
Android Training (AdapterView & Adapter)
PDF
Day 8: Dealing with Lists and ListViews
PPTX
MDAD 5 - Android - Lists, adapters and recycling
PPTX
MDAD 4 - Lists, adapters and recycling
PDF
List Views
PPTX
Android bootcamp 2013 Lists & Adapter
PPT
Lecture Slides for List Views [Android ]
PDF
Lab2-android
PDF
Android ui adapter
PPT
Android ListView and Custom ListView
PPTX
Android course Lesson2
PPTX
05 content providers - Android
PDF
Adapter and cache technique
PPTX
ListView RecyclerView.pptx
PDF
Listview and Adapter
PPTX
Adapter and adapter views that are used in android
PPTX
Android Chapter 4 part2 Types of View and View group
Day 5 android app code advancement
Introduction to Listview in Android
Android Training (AdapterView & Adapter)
Day 8: Dealing with Lists and ListViews
MDAD 5 - Android - Lists, adapters and recycling
MDAD 4 - Lists, adapters and recycling
List Views
Android bootcamp 2013 Lists & Adapter
Lecture Slides for List Views [Android ]
Lab2-android
Android ui adapter
Android ListView and Custom ListView
Android course Lesson2
05 content providers - Android
Adapter and cache technique
ListView RecyclerView.pptx
Listview and Adapter
Adapter and adapter views that are used in android
Android Chapter 4 part2 Types of View and View group
Ad

Recently uploaded (20)

PPTX
Tartificialntelligence_presentation.pptx
PDF
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
PPTX
OMC Textile Division Presentation 2021.pptx
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PDF
DASA ADMISSION 2024_FirstRound_FirstRank_LastRank.pdf
PDF
From MVP to Full-Scale Product A Startup’s Software Journey.pdf
PDF
A comparative analysis of optical character recognition models for extracting...
PDF
August Patch Tuesday
PDF
Univ-Connecticut-ChatGPT-Presentaion.pdf
PDF
Enhancing emotion recognition model for a student engagement use case through...
PDF
Web App vs Mobile App What Should You Build First.pdf
PDF
ENT215_Completing-a-large-scale-migration-and-modernization-with-AWS.pdf
PPTX
1. Introduction to Computer Programming.pptx
PDF
Approach and Philosophy of On baking technology
PDF
MIND Revenue Release Quarter 2 2025 Press Release
PDF
NewMind AI Weekly Chronicles - August'25-Week II
PDF
Zenith AI: Advanced Artificial Intelligence
PDF
project resource management chapter-09.pdf
PDF
Unlocking AI with Model Context Protocol (MCP)
PPTX
TLE Review Electricity (Electricity).pptx
Tartificialntelligence_presentation.pptx
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
OMC Textile Division Presentation 2021.pptx
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
DASA ADMISSION 2024_FirstRound_FirstRank_LastRank.pdf
From MVP to Full-Scale Product A Startup’s Software Journey.pdf
A comparative analysis of optical character recognition models for extracting...
August Patch Tuesday
Univ-Connecticut-ChatGPT-Presentaion.pdf
Enhancing emotion recognition model for a student engagement use case through...
Web App vs Mobile App What Should You Build First.pdf
ENT215_Completing-a-large-scale-migration-and-modernization-with-AWS.pdf
1. Introduction to Computer Programming.pptx
Approach and Philosophy of On baking technology
MIND Revenue Release Quarter 2 2025 Press Release
NewMind AI Weekly Chronicles - August'25-Week II
Zenith AI: Advanced Artificial Intelligence
project resource management chapter-09.pdf
Unlocking AI with Model Context Protocol (MCP)
TLE Review Electricity (Electricity).pptx
Ad

EESTEC Android Workshop 2

  • 1. ANTONIS KALIPETIS - MOBILE LEAD, SOURCELAIR KALIPETIS@SOURCELAIR.COM, @AKALIPETIS ANDROID WORKSHOP 2
  • 2. W H AT W E ’ L L C O V E R T O D AY • Layouts and Views in Android • MVC - Model View Controller • Creating a model • Lists, lists, lists • Creating an adapter • Making everything work
  • 3. L AY O U T S A N D V I E W S I N A N D R O I D • Layouts • XML syntax • Standard XML fields for Android • Differentiation per device or config • For views, let’s stick with stock!
  • 4. MODEL • Contains everything we need to represent our data • Has helper methods • Nothing more!
  • 5. THE PHOTOSET MODEL • Title - The title of the photoset • Description - The description of the photoset • ID - The unique identifier of this photoset
  • 6. View H O W D O W E R E P R E S E N T D ATA
  • 8. ADAPTERS • Match data with views • Used by list views to populate their rows
  • 9. WE NEED A CONTROLLER NOW OUR ACTIVITY
  • 10. W I T H S O M E T E S T D A TA . . . MAKING EVERYTHING WORK