可以通过在布局文件中使用LinearLayout或RelativeLayout来实现。以下是一种常见的实现方式:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<com.google.android.material.tabs.TabLayout
android:id="@+id/tabLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:tabMode="fixed"
app:tabGravity="fill"/>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#000000"/>
<!-- 添加你想要的内容 -->
</LinearLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.google.android.material.tabs.TabLayout
android:id="@+id/tabLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:tabMode="fixed"
app:tabGravity="fill"/>
<View
android:id="@+id/divider"
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_below="@id/tabLayout"
android:background="#000000"/>
<!-- 添加你想要的内容 -->
</RelativeLayout>
以上代码中,我们在TabLayout下方添加了一个View作为分割线,你可以在这个View下方添加你想要的内容,例如其他视图、列表、文本等。
对于TabLayout的详细介绍和使用方法,你可以参考腾讯云的相关文档:TabLayout
云+社区技术沙龙[第26期]
云+社区沙龙online [国产数据库]
云+社区沙龙online [国产数据库]
云+社区技术沙龙[第27期]
云+社区技术沙龙 [第30期]
Elastic 实战工作坊
Elastic 实战工作坊
云+社区技术沙龙[第19期]
企业创新在线学堂
taic
领取专属 10元无门槛券
手把手带您无忧上云