2
我已將AppBarLayout與工具欄和CoordinatorLayout配合使用。工具欄在展開時爲白色
我在這個FrameLayout裏面有了RecyclerView。
我做了TabLayout.setVisibility(GONE);
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/coordinatorLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/white">
<android.support.design.widget.AppBarLayout
android:id="@+id/appBarLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimary"
android:theme="@style/AppTheme">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar_actionbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:layout_scrollFlags="scroll|enterAlways"/>
<android.support.design.widget.TabLayout
android:id="@+id/tabLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:tabTextColor="@color/colorText"
app:tabSelectedTextColor="@color/colorText"
app:tabIndicatorColor="@color/colorText"
app:tabIndicatorHeight="6dp" />
</android.support.design.widget.AppBarLayout>
<FrameLayout
android:id="@+id/frame_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/white"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
</FrameLayout>
</android.support.design.widget.CoordinatorLayout>
我的問題是白色的工具欄有時從上邊緣回來。 當出現白色時,我再往下拖動它回到正常的工具欄顏色。
我不知道問題在哪裏。
您使用哪個版本的支持庫? – Samir
你有沒有得到這個修復?我有類似的問題 – Khanal