我最近在TabLayout
中添加了一个AppBarLayout
,其中toolbar
包含TabLayout
,但现在TabLayout
托管的片段应该位于其下方,在android:layout_below="@+id/tablayout"
涵盖的情况下,我尝试将ViewPager
添加到我的app:layout_behavior="@string/appbar_scrolling_view_behavior"
(其中包含片段),并将TabLayout
添加到<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.jackz314.todo.MainActivity"
android:id="@+id/total_main_bar"
>
<include
android:id="@+id/include"
layout="@layout/content_main"
app:layout_anchor="@+id/app_bar_layout"
app:layout_anchorGravity="left|bottom"
/>
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/app_bar_layout"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay" />
<android.support.design.widget.TabLayout
android:id="@+id/tabs_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="?attr/actionBarSize"
app:layout_collapseMode="pin"
app:tabMode="fixed"
app:tabGravity="fill" />
</android.support.design.widget.AppBarLayout>
</android.support.design.widget.CoordinatorLayout>
本身,但都没有有效的方法,
这是我的布局文件的代码:
Counter
请注意,片段的布局包含在“content_main中,其中包含部分内容。我对Android很新,所以任何形式的帮助或建议都会非常受欢迎。
答案 0 :(得分:0)
检查并修改布局文件中的各种内容后,我将ViewPager
从包含的布局文件移动到包含TabLayout
的同一文件,然后将app:layout_behavior="@string/appbar_scrolling_view_behavior"
应用于ViewPager
解决了问题。 (如果它已经不在您的字符串文件中,android.support.design.widget.AppBarLayout$ScrollingViewBehavior
就是它的值)
坦率地说,我仍然很困惑为什么这会起作用(因为我尝试将相同的属性应用于包含部分,但那不起作用),所以如果有人能帮我解决这个问题,那会很棒。