我使用Android Studio的布局(抽屉和标签),标签位于片段中。
正如您在下面的屏幕截图中看到的,它们不在工具栏下,并显示在中间。可能是什么问题呢?
标签-main.xml中
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:orientation="vertical"
android:layout_height="wrap_content">
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
app:tabGravity="fill"
app:tabMode="fixed"
android:background="@color/material_blue_grey_800"
app:tabIndicatorColor="@color/orange"
app:tabSelectedTextColor="@color/orange"
app:tabTextColor="@color/white"
android:layout_width="match_parent"
android:layout_height="wrap_content">
</android.support.design.widget.TabLayout>
<android.support.v4.view.ViewPager
android:id="@+id/viewpager"
android:layout_width="match_parent"
android:layout_height="match_parent">
</android.support.v4.view.ViewPager>
</LinearLayout >
答案 0 :(得分:0)
由于您已添加TabLayout
和ViewPager
的容器上的边距/填充,标签可能不会占据整个宽度。
标签栏也可以是顶部工具栏的一部分。然后选项卡将与工具栏样式匹配,为此您可以使用AppBarLayout
:see support lib JavaDocs。在此布局中,您同时包含Toolbar
和TabLayout
。
答案 1 :(得分:0)
将此添加到您的TabLayout:
应用程式:tabMode = “固定的”
它会告诉布局拉伸标签以适应屏幕的宽度 另请注意,如果视图有边距(从视图或父视图),它将无效