Android 设计支持TabLayout重叠内容
Android Design Support TabLayout overlapping content
我正在使用设计支持库中引入的新 TabLayout。我有这样的代码:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="match_parent"
android:layout_width="match_parent">
<android.support.design.widget.CoordinatorLayout
android:id="@+id/lines_coordinator"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:elevation="4dp"/>
</android.support.design.widget.AppBarLayout>
<android.support.v4.view.ViewPager
android:id="@+id/viewpager"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</android.support.design.widget.CoordinatorLayout>
</LinearLayout>
问题是,选项卡与片段显示的内容顶部重叠。我怎样才能解决这个问题?我像 Github 上的示例一样使用 TabLayout,所以我相信我的代码没有问题。我已经有了一个工具栏,因为我在导航抽屉的片段中使用了选项卡,所以我将它从 AppBarLayout 中删除了。
您需要将 app:layout_behavior="@string/appbar_scrolling_view_behavior"
添加到 ViewPager
:这就是将视图的高度更改为低于 AppBarLayout
而不是完整 match_parent
高度的原因.
我正在使用设计支持库中引入的新 TabLayout。我有这样的代码:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="match_parent"
android:layout_width="match_parent">
<android.support.design.widget.CoordinatorLayout
android:id="@+id/lines_coordinator"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:elevation="4dp"/>
</android.support.design.widget.AppBarLayout>
<android.support.v4.view.ViewPager
android:id="@+id/viewpager"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</android.support.design.widget.CoordinatorLayout>
</LinearLayout>
问题是,选项卡与片段显示的内容顶部重叠。我怎样才能解决这个问题?我像 Github 上的示例一样使用 TabLayout,所以我相信我的代码没有问题。我已经有了一个工具栏,因为我在导航抽屉的片段中使用了选项卡,所以我将它从 AppBarLayout 中删除了。
您需要将 app:layout_behavior="@string/appbar_scrolling_view_behavior"
添加到 ViewPager
:这就是将视图的高度更改为低于 AppBarLayout
而不是完整 match_parent
高度的原因.