gpt4 book ai didi

android - 一次包含多个项目的水平回收器 View

转载 作者:太空宇宙 更新时间:2023-11-03 12:15:29 25 4
gpt4 key购买 nike

我想像这样一次显示多个项目 View

enter image description here

我正在使用回收站 View 23.2.1

compile 'com.android.support:recyclerview-v7:23.2.1'

我的回收站 View xml

       <android.support.v7.widget.RecyclerView
android:id="@+id/gallary"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:scrollbars="horizontal" />

对应的Java代码

 mRecyclerView = (RecyclerView) findViewById(R.id.gallary);
mLayoutManager = new LinearLayoutManager(this, LinearLayoutManager.HORIZONTAL, false);
mRecyclerView.setLayoutManager(mLayoutManager);

通过这种配置,我一次只能得到一个项目。如下图所示

enter image description here

回收站 View 中的 wrap_content 似乎不起作用,因为图像之间存在空间。无论如何要删除项目之间的空间。

我在回收站 View 中发现了一个与 wrap_contect 相关的错误 link这是固定的。不确定这是否导致了问题。任何解决此问题的帮助将不胜感激

我的行 View :

 <?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">

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

<ImageView
android:id="@+id/image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/facebook" />

<TextView
android:id="@+id/titletv"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/image"
android:layout_centerHorizontal="true"
android:text="Testing"
android:textSize="@dimen/fourteen_sp" />


<ProgressBar
android:id="@+id/mainimgloading"
android:layout_width="24dp"
android:layout_height="24dp"
android:layout_centerInParent="true"
android:layout_gravity="center" />


</RelativeLayout>

</LinearLayout>

最佳答案

你的行的父 LinearLayout 不能是 match_parent 你必须使用 wrap_content 作为你的宽度否则你会得到你在那里看到的。

如果你有一个垂直的 recyclerview 那么你将使用 wrap_content 作为你的高度而不是你的宽度

关于android - 一次包含多个项目的水平回收器 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38231041/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com