码迷,mamicode.com
首页 > 移动开发 > 详细

Android开发之onClick事件的实现

时间:2015-02-11 21:50:31      阅读:266      评论:0      收藏:0      [点我收藏+]

标签:

算是从2015年开始学习android开发,目前把onClick的事件实现写下来,记录下,以备参考。

实现button的点击功能,让textView显示一行文字,最简单的onClick事件。

直接贴代码:

    public void onClick_method(View view){
        String contextString="点击了这个按钮,实现了点击功能";
        TextView textView=(TextView) findViewById(R.id.testTV);
        textView.setText(contextString);       
    }

布局文件:

    <TextView
        android:id="@+id/testTV"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="@string/hello_world"/>
    <Button 
        android:onClick="onClick_method"
        android:id="@+id/button"
        android:layout_below="@id/testTV"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Click"
        />

请看下面的实现效果图:

点击前:

技术分享

点击后:

技术分享

看到还有其他的方法, 但是我感觉这种是最简单明了的,以后开发使用这种就可以了。

Android开发之onClick事件的实现

标签:

原文地址:http://www.cnblogs.com/liyiran/p/4286933.html

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