Posts

Showing posts from January 26, 2019

How to reload same activity with giving data with intent?

Image
0 0 Below is my code, but I dont get restaurant_id ,after reload activity; Intent refresh = new Intent(getApplicationContext(), RestaurantDetailActivity.class); refresh.putExtra("restaurant_id", mDataset.get(position).getRestaurantId()); startActivity(refresh); finish(); android android-studio android-intent share | improve this question asked Nov 19 '18 at 4:07 Vishal Vaishnav Vishal Vaishnav 1,989 2 8 30