1 Activity Fragment Intent Filters EventHandling
1 Activity Fragment Intent Filters EventHandling
1 Activity Fragment Intent Filters EventHandling
Intent / Filters
Event Handling: Manual Reference
www.issacitlabs.com
www.facebook.com/issaclabs
www.linkedin.com/in/issacitlabs
Android Activity
2
Activity Class Inheritance Hierarchy
3
Android Activity Lifecycle
4
Android Activity Lifecycle
5
Android Activity Lifecycle
6
Android Activity Lifecycle
7
Android Activity Lifecycle
An activity class loads all the UI component using the XML file
available in res/layout folder of the project. Following statement loads
UI components from res/layout/activity_main.xml file:
setContentView(R.layout.activity_main);
An application can have one or more activities without any restrictions.
Every activity you define for your application must be declared in your
AndroidManifest.xml file and the main activity for your app must be
declared in the manifest with an <intent-filter> that includes the MAIN
action and LAUNCHER category as follows:
8
Android Activity Lifecycle
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.helloworld“ android:versionCode="1“ android:versionName="1.0" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>
</manifest>
If either the MAIN action or LAUNCHER category are not declared for one of your activities,
then your app icon will not appear in the Home screen's list of apps.
9
Android Activity Lifecycle Example
11
@Override
protected void onResume() {
super.onResume();
Log.d("lifecycle","onResume invoked");
}
@Override
protected void onPause() {
super.onPause();
Log.d("lifecycle","onPause invoked");
}
12
@Override
protected void onStop() {
super.onStop();
Log.d("lifecycle","onStop invoked");
}
@Override
protected void onRestart() {
super.onRestart();
Log.d("lifecycle","onRestart invoked");
}
13
@Override
protected void onDestroy() {
super.onDestroy();
Log.d("lifecycle","onDestroy invoked");
}
}
Output:
You will not see any output on the emulator or device. You need to open
logcat.
Now see on the logcat: onCreate, onStart and onResume methods are
invoked.
14
Android Fragments
15
Following are important points about fragment −
A fragment has its own layout and its own behaviour with its own life
cycle callbacks.
16
A fragment can be used in multiple activities.
Fragment life cycle is closely related to the life cycle of its host activity
which means when the activity is paused, all the fragments available
in the activity will also be stopped.
18
Following is a typical example of how two UI modules defined by
fragments can be combined into one activity for a tablet design, but
separated for a handset design
19
The application can embed two fragments in Activity A, when running on
a tablet-sized device. However, on a handset-sized screen, there's not
enough room for both fragments, so Activity A includes only the fragment
for the list of articles, and when the user selects an article, it starts Activity
B, which includes the second fragment to read the article.
20
Fragment Life Cycle
Android fragments have their own life cycle very similar to an android
activity. This section briefs different stages of its life cycle.
21
Here is the list of methods which you can to override in your fragment
class −
onCreate() The system calls this method when creating the fragment.
You should initialize essential components of the fragment that you
want to retain when the fragment is paused or stopped, then resumed.
22
onCreateView() The system calls this callback when it's time for the
fragment to draw its user interface for the first time. To draw a UI for
your fragment, you must return a View component from this method
that is the root of your fragment's layout. You can return null if the
fragment does not provide a UI.
onPause() The system calls this method as the first indication that the
user is leaving the fragment. This is usually where you should commit
any changes that should be persisted beyond the current user
session.
24
Android Activity Lifecycle
25
How to use Fragments?
First of all decide how many fragments you want to use in an activity.
For example let's we want to use two fragments to handle landscape
and portrait modes of the device.
26
Corresponding to each fragment, you will need to create layout files in
XML file. These files will have layout for the defined fragments.
27
Types of Fragments
Single frame fragments − Single frame fragments are using for hand
hold devices like mobiles, here we can show only one fragment as a
view.
29
LIST IN FRAGMENTS
30
3. Android Fragment Transition
What is a Transition?
Activity and Fragment transitions in Lollipop are built on top of a relatively
new feature in Android called Transitions. Introduced in KitKat, the
transition framework provides a convenient API for animating between
different UI states in an application. The framework is built around two
key concepts: scenes and transitions. A scene defines a given state of an
application's UI, whereas a transition defines the animated change
between two scenes.
31
When a scene changes, a Transition has two main responsibilities −
1. Capture the state of each view in both the start and end scenes.
2. Create an Animator based on the differences that will animate the
views from one scene to the other.
32
33
Android Fragment Example
<fragment
android:id="@+id/fragment2"
android:name="com.example.fragmentexample.Fragment2"
34
android:layout_width="0px"
android:layout_height="match_parent"
android:layout_weight="1"
/>
<fragment
android:id="@+id/fragment1"
android:name="com.example.fragmentexample.Fragment1"
android:layout_width="0px" android:layout_height="match_parent"
android:layout_weight="1"
/>
</LinearLayout>
35
File: fragment1.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/andr
oid"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="#00ff00"
>
36
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="fragment frist"
android:textAppearance="?android:attr/textAppearanceLarge" />
</LinearLayout>
37
File: fragment2.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/andr
oid"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="#0000ff"
>
38
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Second Fragment"
android:textAppearance="?android:attr/textAppearanceLarge" />
</LinearLayout>
39
MainActivity class
File: MainActivity.java
package com.example.fragmentexample;
import android.os.Bundle; import android.app.Activity;
import android.view.Menu;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
} }
40
File: Fragment1.java
package com.example.fragmentexample;
import android.app.Fragment; import android.os.Bundle;
import android.view.LayoutInflater; import android.view.View;
import android.view.ViewGroup;
public class Fragment1 extends Fragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
return inflater.inflate(R.layout.fragment1,container, false);
}
41
File: Fragment2.java
package com.example.fragmentexample;
import android.app.Fragment; import android.os.Bundle;
import android.view.LayoutInflater; import android.view.View;
import android.view.ViewGroup;
public class Fragment2 extends Fragment { public View onCreateVi
ew(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// TODO Auto-generated method stub
return inflater.inflate(R.layout.fragment2,container, false);
}
42
Output:
43
Android - Intents and Filters
44
For example, let's assume that you have an Activity that needs to launch
an email client and sends an email using your Android device. For this
purpose, your Activity would send an ACTION_SEND along with
appropriate chooser, to the Android Intent Resolver. The specified
chooser gives the proper interface for the user to pick how to send your
email data.
Intent email = new Intent(Intent.ACTION_SEND, Uri.parse("mailto:"));
email.putExtra(Intent.EXTRA_EMAIL, recipients);
email.putExtra(Intent.EXTRA_SUBJECT, subject.getText().toString());
email.putExtra(Intent.EXTRA_TEXT, body.getText().toString());
startActivity(Intent.createChooser(email, "Choose an email client
from..."));
45
Previous syntax is calling startActivity method to start an email activity
and result should be as shown below :
46
For example, assume that you have an Activity that needs to open URL in a web
browser on your Android device. For this purpose, your Activity will send
ACTION_WEB_SEARCH Intent to the Android Intent Resolver to open given URL
in the web browser. The Intent Resolver parses through a list of Activities and
chooses the one that would best match your Intent, in this case, the Web Browser
Activity. The Intent Resolver then passes your web page to the web browser and
starts the Web Browser Activity.
String q = “issacitlabs.com";
Intent intent = new Intent(Intent.ACTION_WEB_SEARCH );
intent.putExtra(SearchManager.QUERY, q);
startActivity(intent);
Above example will search as issacitlabs on android search engine and it gives
the result of tutorialspoint in your an activity
47
Thus, Android Intent is the message that is passed between components
such as activities, content providers, broadcast receivers, services etc.
48
The LabeledIntent is the subclass of android.content.Intent class.
49
There are separate mechanisms for delivering intents to each type of component
- activities, services, and broadcast receivers.
Sr.No Method & Description
1 Context.startActivity()
The Intent object is passed to this method to launch a new activity or get an
existing activity to do something new.
2 Context.startService()
The Intent object is passed to this method to initiate a service or deliver new
instructions to an ongoing service.
3 Context.sendBroadcast()
The Intent object is passed to this method to deliver the message to all interested
broadcast receivers.
50
Intent Objects
51
Action
This is mandatory part of the Intent object and is a string naming the
action to be performed — or, in the case of broadcast intents, the action
that took place and is being reported. The action largely determines how
the rest of the intent object is structured . The Intent class defines a
number of action constants corresponding to different intents. Here is a
list of Android Intent Standard Actions
The action in an Intent object can be set by the setAction() method and
read by getAction().
52
Data
Adds a data specification to an intent filter. The specification can be just a
data type (the mimeType attribute), just a URI, or both a data type and a
URI. A URI is specified by separate attributes for each of its parts −
These attributes that specify the URL format are optional, but also
mutually dependent −
If a scheme is not specified for the intent filter, all the other URI attributes
are ignored.
If a host is not specified for the filter, the port attribute and all the path
attributes are ignored.
53
The setData() method specifies data only as a URI, setType() specifies it
only as a MIME type, and setDataAndType() specifies it as both a URI
and a MIME type. The URI is read by getData() and the type by
getType().
54
Some examples of action/data pairs are −
S.N. Action/Data Pair & Description
1 ACTION_VIEW content://contacts/people/1
Display information about the person whose identifier is "1".
2 ACTION_DIAL content://contacts/people/1
Display the phone dialer with the person filled in.
3 ACTION_VIEW tel:123
Display the phone dialer with the given number filled in.
55
4 ACTION_DIAL tel:123
Display the phone dialer with the given number filled in.
5 ACTION_EDIT content://contacts/people/1
Edit information about the person whose identifier is "1".
6 ACTION_VIEW content://contacts/people/
Display a list of people, which the user can browse through.
7 ACTION_SET_WALLPAPER
Show settings for choosing wallpaper
56
8 ACTION_SYNC
It going to be synchronous the data,Constant Value is
android.intent.action.SYNC
9 ACTION_SYSTEM_TUTORIAL
It will start the platform-defined tutorial(Default tutorial or start up tutorial)
10 ACTION_TIMEZONE_CHANGED
It intimates when time zone has changed
11 ACTION_UNINSTALL_PACKAGE
It is used to run default uninstaller
57
Category
The category is an optional part of Intent object and it's a string
containing additional information about the kind of component that should
handle the intent. The addCategory() method places a category in an
Intent object, removeCategory() deletes a category previously added, and
getCategories() gets the set of all categories currently in the object. Here
is a list of Android Intent Standard Categories.
You can check detail on Intent Filters in below section to understand how
do we use categories to choose appropriate activity corresponding to an
Intent.
58
Extras
his will be in key-value pairs for additional information that should be
delivered to the component handling the intent. The extras can be set
and read using the putExtras() and getExtras() methods respectively.
59
Flags
These flags are optional part of Intent object and instruct the Android
system how to launch an activity, and how to treat it after it's launched
etc.
Sr.No Flags & Description
1 FLAG_ACTIVITY_CLEAR_TASK
If set in an Intent passed to Context.startActivity(), this flag will cause any
existing task that would be associated with the activity to be cleared
before the activity is started. That is, the activity becomes the new root of
an otherwise empty task, and any old activities are finished. This can only
be used in conjunction with FLAG_ACTIVITY_NEW_TASK.
60
2 FLAG_ACTIVITY_CLEAR_TOP
If set, and the activity being launched is already running in the current
task, then instead of launching a new instance of that activity, all of the
other activities on top of it will be closed and this Intent will be delivered
to the (now on top) old activity as a new Intent.
3 FLAG_ACTIVITY_NEW_TASK
This flag is generally used by activities that want to present a "launcher"
style behavior: they give the user a list of separate things that can be
done, which otherwise run completely independently of the activity
launching them.
61
Component Name
This optional field is an android ComponentName object representing
either Activity, Service or BroadcastReceiver class. If it is set, the Intent
object is delivered to an instance of the designated class otherwise
Android uses other information in the Intent object to locate a suitable
target.
62
Types of Android Intents
There are two types of intents in android: implicit and explicit.
1) Implicit Intent
Implicit Intent doesn't specifiy the component. In such case, intent
provides information of available components provided by the system that
is to be invoked.
For example, you may write the following code to view the webpage.
Intent intent=new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("http://www.issacitlabs.com"));
startActivity(intent);
63
2) Explicit Intent
Explicit Intent specifies the component. In such case, intent provides the
external class to be invoked.
Intent i = new Intent(getApplicationContext(), ActivityTwo.class);
startActivity(i);
64
65
Explicit Intents : Explicit intent going to be connected internal world of
application,suppose if you wants to connect one activity to another
activity, we can do this quote by explicit intent, below image is connecting
first activity to second activity by clicking button.
66
These intents designate the target component by its name and they are
typically used for application-internal messages - such as an activity
starting a subordinate service or launching a sister activity. For example −
// Starts TargetActivity
startActivity(i);
67
Implicit Intents
These intents do not name a target and the field for the component name
is left blank. Implicit intents are often used to activate components in
other applications. For example −
Intent Filters
You have seen how an Intent has been used to call an another activity.
Android OS uses filters to pinpoint the set of Activities, Services, and
Broadcast receivers that can handle the Intent with help of specified set
of action, categories, data scheme associated with an Intent. You will use
<intent-filter> element in the manifest file to list down actions, categories
and data types associated with any activity, service, or broadcast
receiver.
70
Following is an example of a part of AndroidManifest.xml file to specify an
activity com.example.My Application.CustomActivity which can be
invoked by either of the two mentioned actions, one category, and one
data −
<activity android:name=".CustomActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<action android:name="com.example.My Application.LAUNCH" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="http" />
</intent-filter></activity>
71
Once this activity is defined along with above mentioned filters, other
activities will be able to invoke this activity using either the
android.intent.action.VIEW, or using the com.example.My
Application.LAUNCH action provided their category is
android.intent.category.DEFAULT.
The <data> element specifies the data type expected by the activity to be
called and for above example our custom activity expects the data to start
with the "http://"
72
There may be a situation that an intent can pass through the filters of
more than one activity or service, the user may be asked which
component to activate. An exception is raised if no target can be found.
A filter <intent-filter> may list more than one action as shown above but
this list cannot be empty; a filter must contain at least one <action>
element, otherwise it will block all intents. If more than one actions are
mentioned then Android tries to match one of the mentioned actions
before invoking the activity.
73
A filter <intent-filter> may list zero, one or more than one categories. if
there is no category mentioned then Android always pass this test but if
more than one categories are mentioned then for an intent to pass the
category test, every category in the Intent object must match a category
in the filter.
Each <data> element can specify a URI and a data type (MIME media
type). There are separate attributes like scheme, host, port, and path for
each part of the URI. An Intent object that contains both a URI and a data
type passes the data type part of the test only if its type matches a type
listed in the filter.
74
Android Implicit Intent Example
Let's see the simple example of implicit intent that displays a web page.
activity_main.xml
File: activity_main.xml
<RelativeLayout xmlns:androclass="http://schemas.android.com/apk/res
/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >
75
<EditText
android:id="@+id/editText1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="44dp"
android:ems="10" />
76
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/editText1"
android:layout_centerHorizontal="true"
android:layout_marginTop="54dp"
android:text="Visit" />
</RelativeLayout>
77
Activity class
File: MainActivity.java
package org.sssit.implicitintent;
import android.net.Uri;
import android.os.Bundle;
import android.app.Activity;
import android.content.Intent;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
78
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
final EditText editText1=(EditText)findViewById(R.id.editText1);
Button button1=(Button)findViewById(R.id.button1);
79
button1.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0) {
String url=editText1.getText().toString();
Intent intent=new Intent(Intent.ACTION_VIEW,Uri.parse(url));
startActivity(intent);
}
});
}
}
80
Output
81
Android Explicit Intent Example
82
activity_main.xml
File: activity_main.xml
<RelativeLayout xmlns:androclass="http://schemas.android.com/apk/res
/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >
83
<Button
android:id="@+id/Button01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/TextView01"
android:layout_marginLeft="65dp"
android:layout_marginTop="38dp"
android:onClick="onClick"
android:text="Call second activity" />
84
<TextView
android:id="@+id/TextView01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/Button01"
android:layout_alignParentTop="true"
android:layout_marginLeft="18dp"
android:layout_marginTop="27dp"
android:minHeight="60dip"
android:text="First Activity"
android:textSize="20sp" /> </RelativeLayout>
85
activitytwo_main.xml
File: activitytwo_main.xml
<RelativeLayout xmlns:androclass="http://schemas.android.com/apk/res
/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >
86
<Button
android:id="@+id/Button01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/TextView01"
android:layout_marginLeft="65dp"
android:layout_marginTop="38dp"
android:onClick="onClick"
android:text="Call First activity" />
87
<TextView
android:id="@+id/TextView01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/Button01"
android:layout_alignParentTop="true"
android:layout_marginLeft="18dp"
android:layout_marginTop="27dp"
android:minHeight="60dip"
android:text="Second Activity"
android:textSize="20sp" /> </RelativeLayout>
88
ActivityOne class
File: MainActivityOne.java
package com.example.explicitintent2;
import android.os.Bundle;
import android.app.Activity;
import android.content.Intent;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.Toast;
89
public class ActivityOne extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Button button1=(Button)findViewById(R.id.Button01);
button1.setOnClickListener(new OnClickListener(){
public void onClick(View view) {
Intent i = new Intent(getApplicationContext(), ActivityTwo.class);
i.putExtra("Value1", “IssacITLabs");
i.putExtra("Value2", “Adnroid Begins");
// Set the request code to any code you like, you can identify the
// callback via this code
startActivity(i);
} });
} }
90
ActivityTwo class
File: MainActivityTwo.java
package com.example.explicitintent2;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText; import android.widget.TextView;
import android.widget.Toast;
91
public class ActivityTwo extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle bundle) {
super.onCreate(bundle);
TextView tv=new TextView(this);
tv.setText("second activity");
setContentView(R.layout.activity_two);
Bundle extras = getIntent().getExtras();
String value1 = extras.getString("Value1");
String value2 = extras.getString("Value2");
Toast.makeText(getApplicationContext(),"Values are:\n First value: "+value1+
"\n Second Value: "+value2,Toast.LENGTH_LONG).show();
Button button1=(Button)findViewById(R.id.Button01);
button1.setOnClickListener(new OnClickListener(){
public void onClick(View view) {
Intent i = new Intent(getApplicationContext(), ActivityOne.class); startActivity(i); } });
} }
92
Output
93
Android StartActivityForResult Example
94
Let's see the simple example of android startActivityForResult method.
activity_main.xml
Drag one textview and one button from the pallete, now the xml file will
look like this.
File: activity_main.xml
<RelativeLayout xmlns:androclass="http://schemas.android.com/apk/res
/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
95
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/button1"
96
android:layout_alignParentTop="true"
android:layout_marginTop="48dp"
android:text="Default Message" />
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/textView1"
android:layout_centerHorizontal="true"
android:layout_marginTop="42dp"
android:text="GetMessage" /> </RelativeLayout>
97
second_main.xml
This xml file is created automatically when you create another activity. To
create new activity Right click on the package inside the src -> New
-> Other ->Android Activity.
Now drag one editText, one textView and one button from the pallete,
now the xml file will look like this:
File: second_main.xml
<RelativeLayout xmlns:androclass="http://schemas.android.com/apk/res
/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
98
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".SecondActivity" >
99
<EditText
android:id="@+id/editText1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_marginTop="61dp"
android:layout_toRightOf="@+id/textView1"
android:ems="10" />
100
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/editText1"
android:layout_alignBottom="@+id/editText1"
android:layout_alignParentLeft="true"
android:text="Enter Message:" />
101
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/editText1"
android:layout_centerHorizontal="true"
android:layout_marginTop="34dp"
android:text="Submit" />
</RelativeLayout>
102
Activity class
Now let's write the code that invokes another activity and get result from that
activity.
File: MainActivity.java
package com.issac.startactivityforresult;
import android.os.Bundle;
import android.app.Activity;
import android.content.Intent;
import android.view.Menu;
import android.view.View; import android.view.View.OnClickListener;
import android.widget.Button; import android.widget.TextView;
103
public class MainActivity extends Activity {
TextView textView1;
Button button1;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
textView1=(TextView)findViewById(R.id.textView1);
button1=(Button)findViewById(R.id.button1);
button1.setOnClickListener(new OnClickListener() {
104
@Override
public void onClick(View arg0) {
Intent intent=new Intent(MainActivity.this,SecondActivity.class);
startActivityForResult(intent, 2);// Activity is started with requestCod
e2
}
});
}
105
// Call Back method to get the Message form other Activity
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent d
ata)
{ super.onActivityResult(requestCode, resultCode, data);
// check if the request code is same as what is passed here it is 2
if(requestCode==2)
{
String message=data.getStringExtra("MESSAGE");
textView1.setText(message);
} }
106
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
}
107
SecondActivity class
Let's write the code that displays the content of second activity layout file.
File: SecondActivity.java
package com.issac.startactivityforresult;
import android.os.Bundle;
import android.app.Activity;
import android.content.Intent;
import android.view.Menu;
import android.view.View; import android.view.View.OnClickListener;
import android.widget.Button; import android.widget.EditText;
import android.widget.TextView;
108
public class SecondActivity extends Activity {
EditText editText1;
Button button1;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_second);
editText1=(EditText)findViewById(R.id.editText1);
button1=(Button)findViewById(R.id.button1);
button1.setOnClickListener(new OnClickListener() {
109
@Override
public void onClick(View arg0) {
String message=editText1.getText().toString();
Intent intent=new Intent();
intent.putExtra("MESSAGE",message);
setResult(2,intent);
finish();//finishing activity
}
});
}
110
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.second, menu);
return true;
}
}
111
Output
112
Android - Event Handling
Events are a useful way to collect data about a user's interaction with
interactive components of Applications. Like button presses or screen touch
etc. The Android framework maintains an event queue as first-in, first-out
(FIFO) basis. You can capture these events in your program and take
appropriate action as per requirements.
114
Event Listeners & Event Handlers
There are many more event listeners available as a part of View class like
OnHoverListener, OnDragListener etc which may be needed for your
application. So I recommend to refer official documentation for Android
application development in case you are going to develop a sophisticated
apps.
117
Event Listeners Registration
Event Registration is the process by which an Event Handler gets registered
with an Event Listener so that the handler is called when the Event Listener
fires the event. Though there are several tricky ways to register your event
listener for any event, but I'm going to list down only top 3 ways, out of which
you can use any of them based on the situation.
1. Using an Anonymous Inner Class
2. Activity class implements the Listener interface.
3. Using Layout file activity_main.xml to specify event handler directly.
118