点击事件

   <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("东哥好。");      
        }  

 

posted @ 2015-01-04 14:29  fleam  阅读(136)  评论(0编辑  收藏  举报