TextView在xml里配置onclick事件

前端之家收集整理的这篇文章主要介绍了TextView在xml里配置onclick事件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

原文:http://www.jb51.cc/article/p-adltninp-do.html


超级有用,纠结了好久,加上这句话就好了

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

<TextView
android:id="@+id/tvTab1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@drawable/deepGrey"
android:clickable="true"
android:drawableTop="@drawable/install"
android:gravity="center"
android:onClick="installedSoftTab" android:text="@string/install" />

原文链接:https://www.f2er.com/xml/299119.html

猜你在找的XML相关文章