【发布时间】:2017-02-26 00:02:53
【问题描述】:
我在 TabLayout 中有几个选项卡。 xml:
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
app:tabMode="scrollable">
<android.support.design.widget.TabItem
android:layout_height="match_parent"
android:layout_width="match_parent"
android:id="@+id/info_tab"
android:icon="@drawable/info"
android:clickable="true"/>
...
我对如何为这些设置 OnClickListener 感到非常困惑。所有在线资源都假设我使用的是 TabHost,但这些功能不适用于 TabLayout。我应该改用 TabHost 吗?或者 TabLayout 的 OnClickListener 是什么样的?
谢谢!
【问题讨论】: