首页 > 系统 > Android > 正文

Android使用TextView,设置onClick属性无效的解决方法

2019-12-12 04:18:21
字体:
来源:转载
供稿:网友

Android在布局文件中为View提供了onClick属性,使用方法如下:

<TextView   android:id="@+id/user"   android:layout_width="@dimen/px_171"   android:layout_height="fill_parent"      android:onClick="iconClickListener"      android:clickable="true"/>  <TextView   android:id="@+id/cinema"   android:layout_width="@dimen/px_220"   android:layout_height="fill_parent"   android:layout_gravity="right"      android:onClick="iconClickListener"      android:clickable="true"/> 
/**  * 点击事件  * @param v  */ public void iconClickListener(View v) {   if(v.getId() == R.id.user){    }else if(v.getId() == R.id.cinema){        } } 

注意一下布局文件为TextView增加了clickable=true(TextView默认为false),这样就可以正常使用了。

以上就是小编为大家带来的Android使用TextView,设置onClick属性无效的解决方法全部内容了,希望大家多多支持武林网~

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表