首页 > 代码库 > 点击事件

点击事件

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

 

点击事件