首页 > 其他 > 详细

点击事件

时间:2015-01-04 14:54:32      阅读:254      评论: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
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!