我将GridLayoutManager
与RecylcerView
一起使用,它有2列。
每个视图都有以下内容:
<LinearLayout
android:width="wrap_content"
android:height="wrap_content">
<Imageview
android:width="100dp"
android:height="150dp" />
</Linearlayout>
很明显,每个图像都有分配的大小,这导致列之间的间隔很大 我需要怎么做才能使图像视图占据所有可用区域?
答案 0 :(得分:0)
尝试对您的XML文件使用以下代码:
<LinearLayout
android:width="match_parent"
android:height="wrap_content">
<Imageview
android:width="match_parent"
android:height="wrap_content"/>
</Linearlayout>