How To Send Intent With Extras To Library Project Activity
I have created a library project with one activity. I have given reference of this library project to my Main Project. I am trying to call Activity of Library Project with some ext
Solution 1:
You have to pass this on your main project
Intent myIntent= new Intent(this,YourActivity.class);
myIntent.putExtra("shopId", shopId);
this.startActivity(myIntent);
And in your Library activity You have to pass just this
Stringintentdata=this.getIntent().getStringExtra("shopId");
Then boom your work is done!
Post a Comment for "How To Send Intent With Extras To Library Project Activity"