每个recyclerview项目都在整个屏幕上显示,我不知道为什么

时间:2016-08-30 14:26:44

标签: android android-layout android-recyclerview

所以我试图显示recyclerview,但每次都使用整个scree,但更精确的是如果我说它根据需要使用空间但是项目之间有额外的空间

1.contennt-main.xml中

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="16dp"
    android:paddingLeft="16dp"
    android:paddingRight="16dp"
    android:paddingTop="16dp"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    tools:context=".MainActivity"
    tools:showIn="@layout/activity_main">



  <android.support.v7.widget.RecyclerView
     android:id="@+id/rec"
     android:scrollbars="vertical"
     android:layout_width="match_parent"
     android:layout_height="match_parent"
     android:layout_marginBottom="10dp">

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


</RelativeLayout>

2.activity_main.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"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true"
    android:orientation="vertical">

   <include layout="@layout/content_main"/>


</LinearLayout>

3.booking.xml,recyclerview中的项目

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

  <RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <TextView
        android:id="@+id/name"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentStart="true"
        android:layout_marginBottom="5dp"
        android:layout_marginStart="30dp"
        android:layout_marginTop="20dp"
        android:text="booking name"
        android:textSize="15sp" />

    <TextView
        android:id="@+id/user"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/name"
        android:text="User name"
        android:textSize="10sp" />


    <TextView
        android:id="@+id/date_time"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentEnd="true"
        android:layout_marginEnd="30dp"
        android:layout_marginTop="25dp"
        android:text="time"
        android:textSize="15dp" />

  </RelativeLayout>

</LinearLayout>

我试图改变一些高度,但它不起作用,所以我该怎么办?

2 个答案:

答案 0 :(得分:0)

在booking.xml中

更改

 android:layout_height="match_parent"

android:layout_height="wrap_content"

答案 1 :(得分:0)

在Booking.xml中,到你的LinearLayout(root),改为

机器人:layout_width =&#34; match_parent&#34;

机器人:layout_height =&#34;的 WRAP_CONTENT &#34;