当我在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中工作正常,但工具栏没有显示。
答案 0 :(得分:0)
更新 $results[6]->submitted;
activity_main.xml:
答案 1 :(得分:0)
您的rl_fragment_container
已绘制在工具栏顶部。
但我想你知道,因为你在片段中应用了填充。
padding 将以相同的大小绘制视图并应用于其内容,而边距将位于视图边界之外,从而使整个视图更小。如果你画背景,这很重要。
正如所说的befoer,您的片段位于工具栏的顶部,您的recyclerview填充整个片段并在顶部绘制背景。
你现在可以
rl_fragment_container
布置工具栏下方的rl_fragment_container
,然后删除填充&amp;边距。