How To Copy a Text from a EditText to another EditText by button clicking in Android?
问题 i wanted to write an app that when you click on the button , copy the text you entered in the EditText to other EditText... i wrote this codes: package com.example.learningapp; import android.os.Bundle; import android.support.v7.app.ActionBarActivity; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; import android.widget.EditText; public class MainActivity extends ActionBarActivity { @Override protected void onCreate(Bundle savedInstanceState)