SlideShare a Scribd company logo
Copyright Ā© 2017, edureka and/or its affiliates. All rights reserved.
Copyright Ā© 2017, edureka and/or its affiliates. All rights reserved.
Agenda
āœ“ What is Android Studio?
āœ“ Android Stack
āœ“ Installation
āœ“ What is an Activity?
āœ“ Activity Life Cycle
āœ“ Event Listeners
āœ“ Intents
Copyright Ā© 2017, edureka and/or its affiliates. All rights reserved.
Event Listeners
Let’s look at various event listeners in an activity
Copyright Ā© 2017, edureka and/or its affiliates. All rights reserved.
Event Listeners
 An event listener is an interface in the View class that contains a single callback method.
 These are the tickets to capture the user interaction with your UI.
This is called when the user either touches the item when in touch mode.
ļ‚® onClick()
This is called when the user navigates onto or away from the item, using the navigation-keys or
trackball.
ļ‚® onFocusChange()
1
2
Copyright Ā© 2017, edureka and/or its affiliates. All rights reserved.
Event Listeners
ļ‚® onLongClick()
ļ‚® onKey()
ļ‚® onTouch()
The user either touches and holds the item when in touch mode. Say it holds the suitable "enter" key
and holds down on the trackball (for one second).
This is called when the user is focused on the item and presses or releases a hardware key on the
device.
This is called when the user performs an action qualified as a touch event, including a press, a
release, or any movement gesture on the screen (within the bounds of the item).
3
4
5
Copyright Ā© 2017, edureka and/or its affiliates. All rights reserved.
Intents
Copyright Ā© 2017, edureka and/or its affiliates. All rights reserved.
Intents
An intent is a messaging object you can use to request
an action from another app component.
āž¢ Methods are used to deliver intents to different
components:
• context.startActivity()
• context.startService()
• context.sendBroadcast()
Copyright Ā© 2017, edureka and/or its affiliates. All rights reserved.
Intents
 An intent can carry data bundle to perform any activity
 For example if an activity has to launch an email operation, we can use an
intent with ACTION_SEND.
Types of Intent:
Implicit Intent
Explicit Intent
1
2
Copyright Ā© 2017, edureka and/or its affiliates. All rights reserved.
Implicit Intent
Implicit intent is when the target component is not defined in the intent and the android
system has to evaluate the registered components based on the intent data.
Intent i = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.edureka.co"));
startActivity(i);
Action Specification
Copyright Ā© 2017, edureka and/or its affiliates. All rights reserved.
Explicit Intent
Explicit intent is when an application defines the target component directly in the
intent.
Intent i = new Intent(this, ActivityTwo.class);
i.putExtra("Value1", "This is ActivityTwo ");
i.putExtra("Value2", "This value two for ActivityTwo");
startActivity(i);
Target component
Slide 11 Course Url

More Related Content

PDF
React Components Lifecycle | React Tutorial for Beginners | ReactJS Training ...
Edureka!
Ā 
PDF
Android Studio Tutorial For Beginners | Android Tutorial | Android Training |...
Edureka!
Ā 
PDF
Docker Compose | Containerizing MEAN Stack Application | DevOps Tutorial | Ed...
Edureka!
Ā 
PDF
Dockerizing An Angular Application Using Git, Jenkins & Docker! | DevOps Tuto...
Edureka!
Ā 
PDF
Top 10 Programming Languages | Programming Languages For Beginners | Computer...
Edureka!
Ā 
PDF
Azure Virtual Network Tutorial | Azure Virtual Machine Tutorial | Azure Train...
Edureka!
Ā 
PDF
Python Django tutorial | Getting Started With Django | Web Development With D...
Edureka!
Ā 
PDF
Top 10 Reasons to Learn Microsoft Azure | Azure Certification Training | Edureka
Edureka!
Ā 
React Components Lifecycle | React Tutorial for Beginners | ReactJS Training ...
Edureka!
Ā 
Android Studio Tutorial For Beginners | Android Tutorial | Android Training |...
Edureka!
Ā 
Docker Compose | Containerizing MEAN Stack Application | DevOps Tutorial | Ed...
Edureka!
Ā 
Dockerizing An Angular Application Using Git, Jenkins & Docker! | DevOps Tuto...
Edureka!
Ā 
Top 10 Programming Languages | Programming Languages For Beginners | Computer...
Edureka!
Ā 
Azure Virtual Network Tutorial | Azure Virtual Machine Tutorial | Azure Train...
Edureka!
Ā 
Python Django tutorial | Getting Started With Django | Web Development With D...
Edureka!
Ā 
Top 10 Reasons to Learn Microsoft Azure | Azure Certification Training | Edureka
Edureka!
Ā 

Viewers also liked (20)

PDF
Angular 4 Components | Angular 4 Tutorial For Beginners | Learn Angular 4 | E...
Edureka!
Ā 
PDF
Bitcoin Blockchain Explained | Understanding Bitcoin and Blockchain | Blockch...
Edureka!
Ā 
PDF
Angular 4 Tutorial For Beginners | Angular 4 Introduction | Angular 4 Trainin...
Edureka!
Ā 
PDF
Artificial Neural Network Tutorial | Deep Learning With Neural Networks | Edu...
Edureka!
Ā 
PDF
Power BI Training | Getting Started with Power BI | Power BI Tutorial | Power...
Edureka!
Ā 
PDF
Docker Swarm For High Availability | Docker Tutorial | DevOps Tutorial | Edureka
Edureka!
Ā 
PDF
Big Data Use Cases | Hadoop Tutorial for Beginners | Hadoop Training | Edureka
Edureka!
Ā 
PDF
What Is DevOps? | Introduction To DevOps | DevOps Tools | DevOps Tutorial | D...
Edureka!
Ā 
PDF
Django Rest Framework | How to Create a RESTful API Using Django | Django Tut...
Edureka!
Ā 
PDF
Selenium Page Object Model Using Page Factory | Selenium Tutorial For Beginne...
Edureka!
Ā 
PDF
Introduction To TensorFlow | Deep Learning Using TensorFlow | TensorFlow Tuto...
Edureka!
Ā 
PDF
Cloud Computing Tutorial For Beginners | What is Cloud Computing | AWS Traini...
Edureka!
Ā 
PDF
Angular 4 Data Binding | Two Way Data Binding in Angular 4 | Angular 4 Tutori...
Edureka!
Ā 
PDF
Azure Interview Questions And Answers | Azure Tutorial For Beginners | Azure ...
Edureka!
Ā 
PDF
ReactJS Tutorial For Beginners | ReactJS Redux Training For Beginners | React...
Edureka!
Ā 
PDF
Machine Learning In Python | Python Machine Learning Tutorial | Deep Learning...
Edureka!
Ā 
PDF
Big Data Tutorial For Beginners | What Is Big Data | Big Data Tutorial | Hado...
Edureka!
Ā 
PDF
Data Science Training | Data Science Tutorial | Data Science Certification | ...
Edureka!
Ā 
PDF
Data Science Tutorial | Introduction To Data Science | Data Science Training ...
Edureka!
Ā 
PDF
Introduction to Data Science
Edureka!
Ā 
Angular 4 Components | Angular 4 Tutorial For Beginners | Learn Angular 4 | E...
Edureka!
Ā 
Bitcoin Blockchain Explained | Understanding Bitcoin and Blockchain | Blockch...
Edureka!
Ā 
Angular 4 Tutorial For Beginners | Angular 4 Introduction | Angular 4 Trainin...
Edureka!
Ā 
Artificial Neural Network Tutorial | Deep Learning With Neural Networks | Edu...
Edureka!
Ā 
Power BI Training | Getting Started with Power BI | Power BI Tutorial | Power...
Edureka!
Ā 
Docker Swarm For High Availability | Docker Tutorial | DevOps Tutorial | Edureka
Edureka!
Ā 
Big Data Use Cases | Hadoop Tutorial for Beginners | Hadoop Training | Edureka
Edureka!
Ā 
What Is DevOps? | Introduction To DevOps | DevOps Tools | DevOps Tutorial | D...
Edureka!
Ā 
Django Rest Framework | How to Create a RESTful API Using Django | Django Tut...
Edureka!
Ā 
Selenium Page Object Model Using Page Factory | Selenium Tutorial For Beginne...
Edureka!
Ā 
Introduction To TensorFlow | Deep Learning Using TensorFlow | TensorFlow Tuto...
Edureka!
Ā 
Cloud Computing Tutorial For Beginners | What is Cloud Computing | AWS Traini...
Edureka!
Ā 
Angular 4 Data Binding | Two Way Data Binding in Angular 4 | Angular 4 Tutori...
Edureka!
Ā 
Azure Interview Questions And Answers | Azure Tutorial For Beginners | Azure ...
Edureka!
Ā 
ReactJS Tutorial For Beginners | ReactJS Redux Training For Beginners | React...
Edureka!
Ā 
Machine Learning In Python | Python Machine Learning Tutorial | Deep Learning...
Edureka!
Ā 
Big Data Tutorial For Beginners | What Is Big Data | Big Data Tutorial | Hado...
Edureka!
Ā 
Data Science Training | Data Science Tutorial | Data Science Certification | ...
Edureka!
Ā 
Data Science Tutorial | Introduction To Data Science | Data Science Training ...
Edureka!
Ā 
Introduction to Data Science
Edureka!
Ā 
Ad

Similar to Android Studio Tutorial For Beginners -2 | Android Development Tutorial | Android Training | Edureka (20)

PPTX
B2. activity and intent
PERKYTORIALS
Ā 
PPTX
Event Handling in Mobile Application Development.pptx
Gowthami476224
Ā 
DOCX
Android intents in android application-chapter7
Dr. Ramkumar Lakshminarayanan
Ā 
PDF
[Android] Widget Event Handling
Nikmesoft Ltd
Ā 
PDF
Intents in Android
ma-polimi
Ā 
PPTX
Tk2323 lecture 3 intent
MengChun Lam
Ā 
PDF
Ch5 intent broadcast receivers adapters and internet
Shih-Hsiang Lin
Ā 
PDF
Android Lesson 3 - Intent
Daniela Da Cruz
Ā 
PPTX
Data Transfer between activities and Database
faiz324545
Ā 
ODP
Ppt 2 android_basics
Headerlabs Infotech Pvt. Ltd.
Ā 
PDF
Android development - Activities, Views & Intents
Lope Emano
Ā 
PPTX
11.11.2020 - Unit 5-3 ACTIVITY, MENU AND SQLITE DATABASE.pptx
MugiiiReee
Ā 
PDF
Mobile Application Development
Muhammad Sajid
Ā 
PPT
Level 1 & 2
skumartarget
Ā 
PPTX
MAD unit 5.pptxyfc8yct7xugxigc8yc8c7yc7gc8yc
NawazWariya
Ā 
PDF
Lab1-android
Lilia Sfaxi
Ā 
PDF
Intents are Awesome
Israel Camacho
Ā 
PDF
android_mod_3.useful for bca students for their last sem
aswinbiju1652
Ā 
PPTX
Data Transfer between Activities & Databases
Muhammad Sajid
Ā 
PPTX
W5_Lec09_Lec10_Intents.pptx
ChSalmanSalman
Ā 
B2. activity and intent
PERKYTORIALS
Ā 
Event Handling in Mobile Application Development.pptx
Gowthami476224
Ā 
Android intents in android application-chapter7
Dr. Ramkumar Lakshminarayanan
Ā 
[Android] Widget Event Handling
Nikmesoft Ltd
Ā 
Intents in Android
ma-polimi
Ā 
Tk2323 lecture 3 intent
MengChun Lam
Ā 
Ch5 intent broadcast receivers adapters and internet
Shih-Hsiang Lin
Ā 
Android Lesson 3 - Intent
Daniela Da Cruz
Ā 
Data Transfer between activities and Database
faiz324545
Ā 
Ppt 2 android_basics
Headerlabs Infotech Pvt. Ltd.
Ā 
Android development - Activities, Views & Intents
Lope Emano
Ā 
11.11.2020 - Unit 5-3 ACTIVITY, MENU AND SQLITE DATABASE.pptx
MugiiiReee
Ā 
Mobile Application Development
Muhammad Sajid
Ā 
Level 1 & 2
skumartarget
Ā 
MAD unit 5.pptxyfc8yct7xugxigc8yc8c7yc7gc8yc
NawazWariya
Ā 
Lab1-android
Lilia Sfaxi
Ā 
Intents are Awesome
Israel Camacho
Ā 
android_mod_3.useful for bca students for their last sem
aswinbiju1652
Ā 
Data Transfer between Activities & Databases
Muhammad Sajid
Ā 
W5_Lec09_Lec10_Intents.pptx
ChSalmanSalman
Ā 
Ad

More from Edureka! (20)

PDF
What to learn during the 21 days Lockdown | Edureka
Edureka!
Ā 
PDF
Top 10 Dying Programming Languages in 2020 | Edureka
Edureka!
Ā 
PDF
Top 5 Trending Business Intelligence Tools | Edureka
Edureka!
Ā 
PDF
Tableau Tutorial for Data Science | Edureka
Edureka!
Ā 
PDF
Python Programming Tutorial | Edureka
Edureka!
Ā 
PDF
Top 5 PMP Certifications | Edureka
Edureka!
Ā 
PDF
Top Maven Interview Questions in 2020 | Edureka
Edureka!
Ā 
PDF
Linux Mint Tutorial | Edureka
Edureka!
Ā 
PDF
How to Deploy Java Web App in AWS| Edureka
Edureka!
Ā 
PDF
Importance of Digital Marketing | Edureka
Edureka!
Ā 
PDF
RPA in 2020 | Edureka
Edureka!
Ā 
PDF
Email Notifications in Jenkins | Edureka
Edureka!
Ā 
PDF
EA Algorithm in Machine Learning | Edureka
Edureka!
Ā 
PDF
Cognitive AI Tutorial | Edureka
Edureka!
Ā 
PDF
AWS Cloud Practitioner Tutorial | Edureka
Edureka!
Ā 
PDF
Blue Prism Top Interview Questions | Edureka
Edureka!
Ā 
PDF
Big Data on AWS Tutorial | Edureka
Edureka!
Ā 
PDF
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
Edureka!
Ā 
PDF
Kubernetes Installation on Ubuntu | Edureka
Edureka!
Ā 
PDF
Introduction to DevOps | Edureka
Edureka!
Ā 
What to learn during the 21 days Lockdown | Edureka
Edureka!
Ā 
Top 10 Dying Programming Languages in 2020 | Edureka
Edureka!
Ā 
Top 5 Trending Business Intelligence Tools | Edureka
Edureka!
Ā 
Tableau Tutorial for Data Science | Edureka
Edureka!
Ā 
Python Programming Tutorial | Edureka
Edureka!
Ā 
Top 5 PMP Certifications | Edureka
Edureka!
Ā 
Top Maven Interview Questions in 2020 | Edureka
Edureka!
Ā 
Linux Mint Tutorial | Edureka
Edureka!
Ā 
How to Deploy Java Web App in AWS| Edureka
Edureka!
Ā 
Importance of Digital Marketing | Edureka
Edureka!
Ā 
RPA in 2020 | Edureka
Edureka!
Ā 
Email Notifications in Jenkins | Edureka
Edureka!
Ā 
EA Algorithm in Machine Learning | Edureka
Edureka!
Ā 
Cognitive AI Tutorial | Edureka
Edureka!
Ā 
AWS Cloud Practitioner Tutorial | Edureka
Edureka!
Ā 
Blue Prism Top Interview Questions | Edureka
Edureka!
Ā 
Big Data on AWS Tutorial | Edureka
Edureka!
Ā 
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
Edureka!
Ā 
Kubernetes Installation on Ubuntu | Edureka
Edureka!
Ā 
Introduction to DevOps | Edureka
Edureka!
Ā 

Recently uploaded (20)

PDF
Presentation about Hardware and Software in Computer
snehamodhawadiya
Ā 
PDF
Revolutionize Operations with Intelligent IoT Monitoring and Control
Rejig Digital
Ā 
PDF
Software Development Methodologies in 2025
KodekX
Ā 
PDF
How Open Source Changed My Career by abdelrahman ismail
a0m0rajab1
Ā 
PDF
Chapter 1 Introduction to CV and IP Lecture Note.pdf
Getnet Tigabie Askale -(GM)
Ā 
PPTX
ChatGPT's Deck on The Enduring Legacy of Fax Machines
Greg Swan
Ā 
PDF
REPORT: Heating appliances market in Poland 2024
SPIUG
Ā 
PDF
Best ERP System for Manufacturing in India | Elite Mindz
Elite Mindz
Ā 
PPT
Coupa-Kickoff-Meeting-Template presentai
annapureddyn
Ā 
PDF
Advances in Ultra High Voltage (UHV) Transmission and Distribution Systems.pdf
Nabajyoti Banik
Ā 
PPTX
Smart Infrastructure and Automation through IoT Sensors
Rejig Digital
Ā 
PPTX
OA presentation.pptx OA presentation.pptx
pateldhruv002338
Ā 
PDF
Tea4chat - another LLM Project by Kerem Atam
a0m0rajab1
Ā 
PPT
L2 Rules of Netiquette in Empowerment technology
Archibal2
Ā 
PDF
Building High-Performance Oracle Teams: Strategic Staffing for Database Manag...
SMACT Works
Ā 
PDF
Security features in Dell, HP, and Lenovo PC systems: A research-based compar...
Principled Technologies
Ā 
PDF
Chapter 2 Digital Image Fundamentals.pdf
Getnet Tigabie Askale -(GM)
Ā 
PDF
Event Presentation Google Cloud Next Extended 2025
minhtrietgect
Ā 
PDF
Using Anchore and DefectDojo to Stand Up Your DevSecOps Function
Anchore
Ā 
PDF
SparkLabs Primer on Artificial Intelligence 2025
SparkLabs Group
Ā 
Presentation about Hardware and Software in Computer
snehamodhawadiya
Ā 
Revolutionize Operations with Intelligent IoT Monitoring and Control
Rejig Digital
Ā 
Software Development Methodologies in 2025
KodekX
Ā 
How Open Source Changed My Career by abdelrahman ismail
a0m0rajab1
Ā 
Chapter 1 Introduction to CV and IP Lecture Note.pdf
Getnet Tigabie Askale -(GM)
Ā 
ChatGPT's Deck on The Enduring Legacy of Fax Machines
Greg Swan
Ā 
REPORT: Heating appliances market in Poland 2024
SPIUG
Ā 
Best ERP System for Manufacturing in India | Elite Mindz
Elite Mindz
Ā 
Coupa-Kickoff-Meeting-Template presentai
annapureddyn
Ā 
Advances in Ultra High Voltage (UHV) Transmission and Distribution Systems.pdf
Nabajyoti Banik
Ā 
Smart Infrastructure and Automation through IoT Sensors
Rejig Digital
Ā 
OA presentation.pptx OA presentation.pptx
pateldhruv002338
Ā 
Tea4chat - another LLM Project by Kerem Atam
a0m0rajab1
Ā 
L2 Rules of Netiquette in Empowerment technology
Archibal2
Ā 
Building High-Performance Oracle Teams: Strategic Staffing for Database Manag...
SMACT Works
Ā 
Security features in Dell, HP, and Lenovo PC systems: A research-based compar...
Principled Technologies
Ā 
Chapter 2 Digital Image Fundamentals.pdf
Getnet Tigabie Askale -(GM)
Ā 
Event Presentation Google Cloud Next Extended 2025
minhtrietgect
Ā 
Using Anchore and DefectDojo to Stand Up Your DevSecOps Function
Anchore
Ā 
SparkLabs Primer on Artificial Intelligence 2025
SparkLabs Group
Ā 

Android Studio Tutorial For Beginners -2 | Android Development Tutorial | Android Training | Edureka

  • 1. Copyright Ā© 2017, edureka and/or its affiliates. All rights reserved.
  • 2. Copyright Ā© 2017, edureka and/or its affiliates. All rights reserved. Agenda āœ“ What is Android Studio? āœ“ Android Stack āœ“ Installation āœ“ What is an Activity? āœ“ Activity Life Cycle āœ“ Event Listeners āœ“ Intents
  • 3. Copyright Ā© 2017, edureka and/or its affiliates. All rights reserved. Event Listeners Let’s look at various event listeners in an activity
  • 4. Copyright Ā© 2017, edureka and/or its affiliates. All rights reserved. Event Listeners  An event listener is an interface in the View class that contains a single callback method.  These are the tickets to capture the user interaction with your UI. This is called when the user either touches the item when in touch mode. ļ‚® onClick() This is called when the user navigates onto or away from the item, using the navigation-keys or trackball. ļ‚® onFocusChange() 1 2
  • 5. Copyright Ā© 2017, edureka and/or its affiliates. All rights reserved. Event Listeners ļ‚® onLongClick() ļ‚® onKey() ļ‚® onTouch() The user either touches and holds the item when in touch mode. Say it holds the suitable "enter" key and holds down on the trackball (for one second). This is called when the user is focused on the item and presses or releases a hardware key on the device. This is called when the user performs an action qualified as a touch event, including a press, a release, or any movement gesture on the screen (within the bounds of the item). 3 4 5
  • 6. Copyright Ā© 2017, edureka and/or its affiliates. All rights reserved. Intents
  • 7. Copyright Ā© 2017, edureka and/or its affiliates. All rights reserved. Intents An intent is a messaging object you can use to request an action from another app component. āž¢ Methods are used to deliver intents to different components: • context.startActivity() • context.startService() • context.sendBroadcast()
  • 8. Copyright Ā© 2017, edureka and/or its affiliates. All rights reserved. Intents  An intent can carry data bundle to perform any activity  For example if an activity has to launch an email operation, we can use an intent with ACTION_SEND. Types of Intent: Implicit Intent Explicit Intent 1 2
  • 9. Copyright Ā© 2017, edureka and/or its affiliates. All rights reserved. Implicit Intent Implicit intent is when the target component is not defined in the intent and the android system has to evaluate the registered components based on the intent data. Intent i = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.edureka.co")); startActivity(i); Action Specification
  • 10. Copyright Ā© 2017, edureka and/or its affiliates. All rights reserved. Explicit Intent Explicit intent is when an application defines the target component directly in the intent. Intent i = new Intent(this, ActivityTwo.class); i.putExtra("Value1", "This is ActivityTwo "); i.putExtra("Value2", "This value two for ActivityTwo"); startActivity(i); Target component