其他分享
首页 > 其他分享> > 如何在Android中创建不带XML的多个选项卡

如何在Android中创建不带XML的多个选项卡

作者:互联网

我在Android中找到了许多使用xml文件创建标签的示例,但是我需要以编程方式创建多个标签.请指导我.

<TabWidget
        android:id="@android:id/tabs"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content">

        <TextView
            android:tag="tab0"
            android:text="Tab 1"
            android:background="@android:drawable/btn_star_big_on"
            android:layout_width="wrap_content"
            android:layout_height="fill_parent"
            />
        <TextView
            android:tag="tab1"
            android:text="Tab 2"
            android:layout_width="wrap_content"
            android:layout_height="fill_parent"
            />
        <TextView
            android:tag="tab2"
            android:text="Tab 3"
            android:layout_width="wrap_content"
            android:layout_height="fill_parent"
            />

    </TabWidget>

我该如何以编程方式而不是上面的xml代码编写此代码.

解决方法:

检查Tab With Swipe示例.它具有不带xml文件的选项卡的实现.

但是每个片段都有XML布局.您可以根据需要删除它.

标签:tabwidget,android
来源: https://codeday.me/bug/20191030/1966111.html