我有一個CoordinatorLayout
其中包含AppBarLayout
和FrameLayout
其中包含片段。修復協調員佈局中的底欄
其中一個片段在頂部包含TabLayout
,一個列表槽位RecyclerView
,底部有一個「自制」工具欄。
的AppBarLayout
配置了app:layout_scrollFlags="scroll|enterAlways"
我的問題是,無論是「工具欄」是隱藏在滾動時,AppBarLayout並在底部我的「自制」工具欄。這是當前的行爲
我想修復底部的「自制」工具欄保持可見的,但我不能達到它。
這是片段佈局的XML
<?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:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
>
<android.support.design.widget.TabLayout
android:id="@+id/toolbarfilter"
android:layout_width="match_parent"
android:background="@color/azul_asde"
app:tabMode="fixed"
app:tabMaxWidth="0dp"
android:elevation="4dp"
app:tabIndicatorColor="@color/verde_pastel"
android:layout_height="wrap_content"
/>
<android.support.v4.widget.SwipeRefreshLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/swipeContainer"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1">
<android.support.v7.widget.RecyclerView
android:id="@+id/list"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</android.support.v4.widget.SwipeRefreshLayout>
<LinearLayout
android:id="@+id/toolbarselection"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:paddingTop="10dp"
android:paddingBottom="10dp"
android:background="@color/azul_asde"
android:elevation="4dp"
android:visibility="visible"
>
<ImageView
android:id="@+id/delete"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:src="@drawable/ic_delete_white_24dp"
android:tint="@color/gris_desactivado" />
<ImageView
android:id="@+id/select"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:src="@drawable/ic_bookmark_border_white_24dp"/>
<ImageView
android:id="@+id/send"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:src="@drawable/ic_send_white_24dp"
android:tint="@color/gris_desactivado" />
</LinearLayout>
</LinearLayout>
EDIT1:THIS問題似乎是同樣的問題。
你能幫我一個忙,告訴我們你是如何隱藏底欄?我似乎無法弄清楚...(我不需要頂部欄,只是底部) – AndreiBogdan
嗨Hanzo, 您是否找到解決此問題的解決方案? – Sharath
你可以發佈你的XML文件,其中包含'CoordinatorLayout' –