Data Passing (Using Intent)

Before proceeding further first make sure that you should know a little about Intent. If you already know what is intent than you can skip this step. And If you want to know what is Intent and how we can use it to navigate the user to the next screen then you should check my previous blog about Navigate Activity (Using Intent) . So now you understand how to use intent. Now look forward to sending the data other activity. In the real-time application, sometimes we have to carry the required data to another screen to perform some task based on it. In android, we can pass those data using intent. The intent is not only used to navigate the user to the next screen but also help us to carry the essential data from one place to another. To pass the data from intent we are using the putExtra() method of intent. Let's check with an example : Button newActivity= (Button) findViewById(R.id. button ) ...