我必须implementing
一个RecylerView
,它应该 Package 的内容,如果它只包含项目的内容高度是少。如果项目的增加像250dp
,它应该设置为最大heght(250dp)
,并能够滚动。如何实现this.my父布局是一个Relative layout
。
这是我的布局文件
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.RecyclerView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/recycler_view"
android:layout_width="match_parent"
android:layout_height="250dp"
android:layout_alignParentBottom="true"
android:layout_gravity="bottom" />
</RelativeLayout>
如果只有一个项目,则为屏幕截图。这应该是wrap_content。
3条答案
按热度按时间6vl6ewon1#
你可以通过编程将高度设置为
RecylerView
如果只有一项...
wrap content
否则
hjzp0vay2#
1.)创建一个类来处理将最大高度设置为用户传递的值:
2.)将其附加到视图并传递DP中的最大高度:
z0qdvdin3#
我这里有一个答案:
https://stackoverflow.com/a/29178364/1148784
只需创建一个扩展RecyclerView的新类并覆盖它的
onMeasure
方法。maxHeight
以像素为单位。您可以使用以下命令:
将250dp转换为像素