我用ScrollView包装2个标题和2个RecycleView,以便我的屏幕可以在项目溢出时滚动。每个RecycleView只能包含3个项目。
但我得到的是底部的第二个RecycleView,只能显示一个项目。而且我不知道为什么。
这是我的XML布局。
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 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:background="@color/colorWhite"
tools:context="com.udaily.udaily.view.fragment.NewsFragment">
<android.support.v4.widget.SwipeRefreshLayout
android:id="@+id/swipeRefreshLayout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="50dp"
android:orientation="horizontal"
android:paddingLeft="20dp"
android:paddingRight="20dp"
android:weightSum="100">
<ImageView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="40"
android:adjustViewBounds="false"
android:scaleType="fitCenter"
android:src="@drawable/infonitas" />
<LinearLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="30"
android:gravity="center_vertical">
<Spinner
android:layout_width="match_parent"
android:layout_height="30dp"
android:layout_marginLeft="5dp" />
</LinearLayout>
<LinearLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="30"
android:gravity="center_vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="30dp"
android:gravity="center_vertical"
android:text="Lihat Semua >>>"
android:textSize="12dp" />
</LinearLayout>
</LinearLayout>
<android.support.v7.widget.RecyclerView
android:id="@+id/newsInfonitas"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingLeft="20dp"
android:paddingRight="20dp" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="50dp"
android:orientation="horizontal"
android:paddingLeft="20dp"
android:paddingRight="20dp"
android:weightSum="100">
<ImageView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="40"
android:adjustViewBounds="false"
android:scaleType="fitCenter"
android:src="@drawable/indochinatown" />
<LinearLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="30"
android:gravity="center_vertical">
<Spinner
android:layout_width="match_parent"
android:layout_height="30dp"
android:layout_marginLeft="5dp"
android:layout_marginRight="5dp" />
</LinearLayout>
<LinearLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="30"
android:gravity="center_vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="30dp"
android:gravity="center_vertical"
android:text="Lihat Semua >>>"
android:textSize="12dp" />
</LinearLayout>
</LinearLayout>
<android.support.v7.widget.RecyclerView
android:id="@+id/newsIndoChina"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingLeft="20dp"
android:paddingRight="20dp" />
</LinearLayout>
</ScrollView>
</android.support.v4.widget.SwipeRefreshLayout>
</android.support.constraint.ConstraintLayout>
有人可以指导如何在第二个RecycleView上显示完整内容
答案 0 :(得分:2)
将高度替换为android:layout_height="0dp"
,并将android:layout_weight="1"
添加到recyclerview。
就像下面的代码一样:
<android.support.v7.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:paddingLeft="20dp"
android:paddingRight="20dp"/>
答案 1 :(得分:0)
将高度替换为android:layout_height="0dp"
并将android:layout_weight="1"
添加到两个recyclerviews并使用权重调整为线性布局。
<android.support.v7.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:paddingLeft="20dp"
android:paddingRight="20dp"/>