ARTICLE

Passing Data From One Activity to Another Activity in Android

Posted by Kirtan Patel Articles | Android Programming July 22, 2011
This article shows how you can pass data from one intent to another intent when calling it from a button in Android
Reader Level:
Download Files:
 

Here is my first article about Android on c-sharpcorner.com.


The following screen shows what we will build in this tutorial.
 
We will pass a username and a password in the EditView Control and if they match correctly then we need to move to another Intent else show a message box saying it is invalid. Also if the user successfully logins then we will show a Welcome , {username} message  in TextView.

So the main intention of this article is to explain how to pass data across multiple intents inside Android.

 
7-22-2011 10-01-03 AM.gif
 
The main logic used here is very simple, wherein you just need to use the putExtra Method to pass the data across multiple program screens.
The putExtra method accepts many kinds of data, such as String, int, float, byte etc etc ..

It's much like what we do in an ASP.Net query string; we append it with payload and in the next page we retrieve it with the same name. The same is here; we do putExtra, specifying the name of the variable and we will retrieve it soon, for another intent.

Main.Java

package com.Program2;
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.Toast;

public class Main extends Activity {
    
/** Called when the activity is first created. */
    @Override
    
public void onCreate(Bundle savedInstanceState)
    {
        
super.onCreate(savedInstanceState);
        setContentView(R.layout.
main);

        /* Get button Text1 Text2 */
        final EditText  edUsername  = (EditText) findViewById(R.id.editText1);
        
final EditText  edPassword  = (EditText)findViewById(R.id.editText2);
        Button btnValidate = (Button)findViewById(R.id.button1);
        btnValidate.setOnClickListener(
new OnClickListener()
           {
                
public void
 onClick(View arg0)
                {
                     String uname  = edUsername.getText().toString();
                     String pass = edPassword.getText().toString();

                     if(uname.equals("kirtan") && pass.equals("12345"))
                     {
                         Intent intent = 
new Intent(Main.this,Success.class);
                         intent.putExtra("username",edUsername.getText().toString());
                         startActivity(intent);
                     }
                     
else
                     {
                           Toast.makeText(Main.
this"Invalid Usename password pair.", Toast.LENGTH_LONG).show();
                     }
              }
           });
    }
}

Success.Java

package
 com.Program2;
import android.app.Activity;
import android.os.Bundle;
import
 android.widget.TextView;

public class Success extends Activity
{
     
protected void onCreate(Bundle savedInstanceState)
     {
           
// TODO Auto-generated method stub
           super
.onCreate(savedInstanceState);
           setContentView(R.layout.
success);
           TextView tv = (TextView) findViewById(R.id.
textView1);
           tv.setText(
"Welcome ,"+getIntent().getExtras().getString("username"));
     }
}

7-22-2011 10-11-36 AM.gif
  

Login to add your contents and source code to this article
post comment
     

nice example thank you...

Posted by sarath kumar Nov 29, 2012

thank you for the example... its very helped lot thank you Kirtan Patel...

Posted by VenuGopal Sriramadasu Oct 17, 2012

thanks a lot for this tutorial. i get this one very helpfull.

Posted by vs vankhede Oct 02, 2012

thanks a lot for this tutorial. i get this one very helpfull

Posted by vs vankhede Oct 02, 2012

Nice and simple!! Thanks alot :)

Posted by Lara Aug 18, 2012
COMMENT USING
PREMIUM SPONSORS
Over-C is a holistic consortium of communications and technology specialists. We build, deploy and market both business as well as consumer products and solutions.
SPONSORED BY
  • PDF reports have never been easier to create. With our included WYSIWYG Designer, you can layout your reports, set up your data source and let DynamicPDF ReportWriter do the rest.