如何在状态栏和Recyclerview卡之间添加空间?

时间:2017-09-17 15:13:23

标签: android material-design

如何在状态栏和回收站视图卡之间添加空格?

我的布局现在看起来像这样:Current Layout

但我希望我的布局如下:I want this layout

我的XML文件

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="16dp">

<ProgressBar
    android:id="@+id/progressBarPayment"
    style="?android:attr/progressBarStyle"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" />

<android.support.v7.widget.RecyclerView
    android:id="@+id/recyclerViewMessages"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

</android.support.v7.widget.RecyclerView>

有人能帮助我吗?

1 个答案:

答案 0 :(得分:0)

RecyclerView

中添加填充/边距
<android.support.v7.widget.RecyclerView
    android:id="@+id/recyclerViewMessages"
    android:paddingTop="8dp"
    android:clipToPadding="false"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" />