hi
I want to get the hashtable object from non activity class to activity class an android
please reply to me
thanks
hi
I want to get the hashtable object from non activity class to activity class an android
please reply to me
thanks
you can pass it through the intent object using extras. Something like this
after creating the intent in your non-activity class set the value using
objIntent.putExtra("keyName", "somevalue");
In the activity class access it like this
Bundle extras = getIntent().getExtras();
if(extras !=null)
{
String value = extras.getString("keyName");
}