TextView在xml中的onClick方法

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

一个小问题,给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/297324.html

猜你在找的XML相关文章