AppBarLayout无法滚动

时间:2015-12-10 07:17:18

标签: android

<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=".activities.MainActivity">


<android.support.design.widget.AppBarLayout
    android:id="@+id/app_bar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:theme="@style/AppTheme.AppBarOverlay"
    style="@style/AppTheme.AppBar"
    android:fitsSystemWindows="true"
    >

    <android.support.v7.widget.Toolbar
        android:id="@+id/appbar_toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="?attr/colorPrimary"
        app:popupTheme="@style/AppTheme.PopupOverlay"
        app:layout_scrollFlags="scroll|enterAlways"
        style="@style/AppTheme.ToolBar"
        >
        <TextView
            style="@style/TextAppearance.AppCompat.Widget.ActionBar.Title"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:layout_gravity="center"
            android:text="@string/app_name"
            />
    </android.support.v7.widget.Toolbar>
    <android.support.design.widget.TabLayout
        android:id="@+id/appbar_tabs"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@android:color/white"
        app:tabTextColor="@color/halfblack"
        app:tabSelectedTextColor="?attr/colorPrimary"
        app:tabIndicatorHeight="2dp"
        app:tabIndicatorColor="?attr/colorPrimary"

        >

        </android.support.design.widget.TabLayout>
</android.support.design.widget.AppBarLayout>

<android.support.v4.view.ViewPager
    android:id="@+id/view_pager"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:layout="@layout/fragment_hotpost"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    />
当我使用这个布局时,AppBarLayout无法滚动,我认为这个问题的关键是我将windowTranslucentNavigation设置为true;当我仍然希望导航成为半透明时,如何制作它。

如果我设置appBarLayout“android:fitsSystemWindows =”true“,AppBar只显示一半,虽然此时它可以滚动。 appbar show half when enter

translucent navigation

0 个答案:

没有答案