首页 > 其他 > 详细

TextView 添加Onclick 无效

时间:2015-04-24 16:58:13      阅读:294      评论:0      收藏:0      [点我收藏+]

给TextView添加Onclick事件还需要配置android:clickable="true",否则点击无效。

<TextView
            android:id="@+id/user_register_button"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:layout_alignParentEnd="true"
            android:layout_marginTop="10.0dp"
            android:layout_marginRight="5.0dp"
            android:layout_marginEnd="5.0dp"
            android:text="@string/user_register_button_txt"
            android:textColor="@color/white"
            android:textSize="12sp"
            android:clickable="true"
            android:onClick="user_register" />

TextView 添加Onclick 无效

原文:http://my.oschina.net/u/1046838/blog/405983

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!