Azhar

Azhar

451 Articles Published

Articles by Azhar

Page 46 of 46

How to pass a String from one Activity to another in Android?

Azhar
Azhar
Updated on 31-Jul-2019 363 Views

This example demonstrates about how do I pass a String from one Activity to another in Android.Step 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new projectStep 2 − Add the following code to res/layout/activity_main.xml.         Step 3 − Add the following code to src/MainActivity.javapackage app.com.sample; import android.content.Intent; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.widget.EditText; public class MainActivity extends AppCompatActivity {    Button changeActivityButton;    EditText messageEditText;    @Override    protected void onCreate(Bundle savedInstanceState) {       ...

Read More
Showing 451–451 of 451 articles
« Prev 1 42 43 44 45 46 Next »
Advertisements