How can I send data from one activity (intent) to another?
I use this code to send data:
Intent i=new Intent(context,SendMessage.class); i.putExtra(\
You can also do like this // put value in intent
Intent in = new Intent(MainActivity.this, Booked.class); in.putExtra("filter", "Booked"); startActivity(in);
// get value from intent
Intent intent = getIntent(); Bundle bundle = intent.getExtras(); String filter = bundle.getString("filter");