我正在构建一个应用程序,我希望Activity有一个bottomBar,并且每个项目都是一个片段。第一个片段应该有一个viewpager。一切正常,但TabLayout和工具栏的高度不同。
问题是:
我的活动布局是:
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<include
android:id="@+id/toolbar"
layout="@layout/toolbar_top" />
</android.support.design.widget.AppBarLayout>
我的toolbarTop布局:
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:theme="@style/Base.ThemeOverlay.AppCompat.Dark"
android:id="@+id/topBar"
android:background="@color/colorPrimary">
</android.support.v7.widget.Toolbar>
和我的tablayout片段:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_marginBottom="?android:attr/actionBarSize"
android:layout_height="match_parent">
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
app:tabMaxWidth="0dp"
app:tabGravity="fill"
app:tabMode="fixed"
android:elevation="6dp"
android:layout_height="?android:attr/actionBarSize"
android:background="@color/colorPrimary" />
<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
app:layout_scrollFlags="scroll|enterAlways|snap"
android:layout_height="wrap_content" />
</LinearLayout>
我尝试了this answer,但没有成功。我无法将tablayout放在Appbarlayout中(这解决了问题),因为每个片段都有一个tablayout。
有什么其他想法可以解决这个问题吗?
答案 0 :(得分:0)
您需要将其包含在AppbarLayout中,以便将 TabLayout 添加到工具栏下方的toolbarTop.xml文件中。