码迷,mamicode.com
首页 > 其他好文 > 详细

点击事件

时间:2015-01-04 14:56:53      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:

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

 

点击事件

标签:

原文地址:http://www.cnblogs.com/hellowzd/p/4201069.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!