点击事件

   <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world" />

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/textView1"
        android:layout_below="@+id/textView1"
        android:layout_marginLeft="49dp"
        android:layout_marginTop="50dp"
        android:onClick="OnMySelfClick"
        android:text="Button" />
 public void OnMySelfClick(View v)  
        {  
            final TextView text = (TextView) findViewById(R.id.textView1);  
            text.setText("东哥好。");      
        }  
原文地址:https://www.cnblogs.com/hellowzd/p/4201069.html