设置Recycleviewer背景时隐藏工具栏

时间:2016-01-23 13:42:04

标签: java android xml android-recyclerview toolbar

当我在RecyclerView上设置背景参数时,它会隐藏工具栏。

很简单,但我无法弄清楚如何解决它。

activity_main.xml中:

<?xml version="1.0" encoding="utf-8"?>
<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"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:orientation="vertical"
    android:background="@android:color/darker_gray"
    tools:context="los.printers.MainActivity"
    app:theme="@style/Theme.MyTheme">

    <android.support.v7.widget.Toolbar
        android:id="@+id/tb_main"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:minHeight="?attr/actionBarSize"
        android:theme="@style/ThemeOverlay.AppCompat.ActionBar"
        app:popupTheme="@style/ThemeOverlay.AppCompat.Light"/>

    <RelativeLayout
        android:id="@+id/rl_fragment_container"
        android:layout_alignParentTop="true"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

</RelativeLayout>

fragment_printer.xml

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout 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"
    tools:context="los.printers.fragment_printer">

    <android.support.v7.widget.RecyclerView
        android:id="@+id/rv_List"
        android:scrollbars="vertical"
        android:paddingTop="?attr/actionBarSize"
        android:background="@color/colorTextIcons"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>

</FrameLayout>

填充在RecyclerView中工作正常,但工具栏没有显示。

2 个答案:

答案 0 :(得分:0)

更新 $results[6]->submitted;

activity_main.xml:

答案 1 :(得分:0)

您的rl_fragment_container已绘制在工具栏顶部。

但我想你知道,因为你在片段中应用了填充。

padding 将以相同的大小绘制视图并应用于其内容,而边距将位于视图边界之外,从而使整个视图更小。如果你画背景,这很重要。

正如所说的befoer,您的片段位于工具栏的顶部,您的recyclerview填充整个片段并在顶部绘制背景。

你现在可以

  1. 移动<{1}} 之前 xml中的工具栏 - &gt;这将在工具栏下面绘制
  2. 将填充更改为边距
  3. 或者只需使用rl_fragment_container布置工具栏下方的rl_fragment_container,然后删除填充&am​​p;边距。