RecyclerView隐藏LinearLayout

时间:2016-11-24 04:19:24

标签: java android android-recyclerview

我在我的报价应用程序中使用了RecyclerView和LinearLayout,如下所示。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
   >


    <LinearLayout
        android:background="@color/colorPrimary"
        android:layout_alignParentBottom="true"
        android:id="@+id/pageNavLayout"
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="40dp">


        <RelativeLayout
            android:layout_weight="1"
            android:id="@+id/butPrev"
            style="@style/SelectableItemBackground"
            android:clickable="true"
            android:layout_width="0dp"
            android:layout_height="match_parent">

            <ImageView
                android:layout_centerInParent="true"
                android:scaleType="fitCenter"
                android:src="@drawable/ic_keyboard_arrow_left_white_24dp"
                android:layout_width="match_parent"
                android:layout_height="match_parent" />
        </RelativeLayout>


        <View
            android:background="#ffffff"
            android:layout_width="1dp"
            android:layout_height="match_parent"/>

        <TextView
            android:id="@+id/textPageCount"
            android:clickable="true"
            style="@style/SelectableItemBackground"
            android:padding="8dp"
            android:textSize="16sp"
            android:textColor="@android:color/white"
            android:text="Page 1 0f 67"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />

        <View
            android:background="#ffffff"
            android:layout_width="1dp"
            android:layout_height="match_parent"/>

        <RelativeLayout
            android:layout_weight="1"
            style="@style/SelectableItemBackground"
            android:clickable="true"
            android:id="@+id/butNext"
            android:layout_width="0dp"
            android:layout_height="match_parent">

            <ImageView
                android:layout_centerInParent="true"
                android:src="@drawable/ic_keyboard_arrow_right_white_24dp"
                android:layout_width="match_parent"
                android:layout_height="match_parent" />
        </RelativeLayout>

    </LinearLayout>

    <android.support.v7.widget.RecyclerView
        android:layout_marginTop="4dp"
        android:layout_marginBottom="4dp"
        android:layout_above="@id/pageNavLayout"
        android:id="@+id/listQuoteView"
        android:layout_width="match_parent"
        android:layout_height="match_parent"></android.support.v7.widget.RecyclerView>

</RelativeLayout>

现在,当我按下Next按钮和RecyclerView List另一个Quote ...它隐藏了我的LinearLayout一段时间,当我滚动它时,它显示它。我使用LinearLayout作为我的底栏。我错过了什么以及我应该做什么才能显示底部吧?

由于

3 个答案:

答案 0 :(得分:0)

试试这个。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
   >

   <android.support.v7.widget.RecyclerView
       android:layout_marginTop="4dp"
       android:layout_marginBottom="4dp"
       android:id="@+id/listQuoteView"
       android:layout_width="match_parent"
       android:weight="1"
       android:layout_height="0dp">
     </android.support.v7.widget.RecyclerView>

<LinearLayout
  android:orientation="vertical"
  android:id="@+id/pageNavLayout"
  android:layout_width="match_parent"
  android:weight="1"
  android:layout_height="0dp">

    <LinearLayout
        android:background="@color/colorPrimary"
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="40dp">


        <RelativeLayout
            android:layout_weight="1"
            android:id="@+id/butPrev"
            style="@style/SelectableItemBackground"
            android:clickable="true"
            android:layout_width="0dp"
            android:layout_height="match_parent">

            <ImageView
                android:layout_centerInParent="true"
                android:scaleType="fitCenter"
                android:src="@drawable/ic_keyboard_arrow_left_white_24dp"
                android:layout_width="match_parent"
                android:layout_height="match_parent" />
        </RelativeLayout>


        <View
            android:background="#ffffff"
            android:layout_width="1dp"
            android:layout_height="match_parent"/>

        <TextView
            android:id="@+id/textPageCount"
            android:clickable="true"
            style="@style/SelectableItemBackground"
            android:padding="8dp"
            android:textSize="16sp"
            android:textColor="@android:color/white"
            android:text="Page 1 0f 67"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />

        <View
            android:background="#ffffff"
            android:layout_width="1dp"
            android:layout_height="match_parent"/>

        <RelativeLayout
            android:layout_weight="1"
            style="@style/SelectableItemBackground"
            android:clickable="true"
            android:id="@+id/butNext"
            android:layout_width="0dp"
            android:layout_height="match_parent">

            <ImageView
                android:layout_centerInParent="true"
                android:src="@drawable/ic_keyboard_arrow_right_white_24dp"
                android:layout_width="match_parent"
                android:layout_height="match_parent" />
        </RelativeLayout>

    </LinearLayout>

</LinearLayout>   
</LinearLayout>

答案 1 :(得分:0)

android:layout_marginBottom="40dp"中添加RecyclerView,以便LinearLayout身高为40dp(根据您的代码),使其始终可见。

答案 2 :(得分:0)

以下是已修复到屏幕底部的元素示例:

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:gravity="center"
        android:background="#26ffffff"
        android:paddingTop="3dp"
        android:paddingBottom="3dp">
        <TextView
            android:id="@+id/today_last_sync"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:textSize="12sp"
            android:gravity="right"
            android:textColor="@color/white"/>
    </RelativeLayout>

您需要确保在子XML上使用以下设置:

android:layout_alignParentBottom="true"

与父容器一样:

    android:layout_width="match_parent"
    android:layout_height="match_parent"