Bundle bundle = getIntent().getExtras();
Now get the your desired value from the bundle
String value=bundle.getString("Value");


if(value!=null)
{

if(value.equals("Some Value1"))
{
 //some stuff
}
if(value.equals("Some Value2"))
{
 //some stuff
}

if(value.equals("Some Value3"))
{
 //some stuff
}
}

I think this will solve your problem




Tanmay Mandal
Finding myself in me



-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to