gpt4 book ai didi

android - 如何在 RecyclerView 中显示确切的项目数量?

转载 作者:IT老高 更新时间:2023-10-28 23:31:46 28 4
gpt4 key购买 nike

我试图在 RecyclerView 中显示准确(例如 3 个项目)。我们的 Web 应用程序显示如下:

enter image description here

如果我移动元素:

enter image description here

然后松开鼠标,它会自动出现: enter image description here

在 Android 中,我使用 RecyclerView 显示图像:

enter image description here

如何在 RecyclerView 的可见区域中精确显示 3 个项目?如何避免显示“一半”项目?这可能吗?

回收站 View :

        <android.support.v7.widget.RecyclerView
android:layout_width="wrap_content"
android:layout_height="130dp"
android:id="@+id/rvProducts" />

回收站 View 中的一项:

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

<ImageView
android:layout_width="100dp"
android:layout_height="wrap_content"
android:padding="10dp"
android:id="@+id/ivProduct"
android:src="@drawable/noimage"/>

</LinearLayout>

代码:

    LinearLayoutManager layoutManager
= new LinearLayoutManager(getActivity(), LinearLayoutManager.HORIZONTAL, false);
RecyclerView productImageList = (RecyclerView) view.findViewById(R.id.rvProducts);
productImageList.setLayoutManager(layoutManager);
GalleryRecyclerAdapter adapter = new GalleryRecyclerAdapter(images);
productImageList.setAdapter(adapter);

最佳答案

一种解决方案是以编程方式设置每个 child 的width

view.getLayoutParams().width = getScreenWidth() / VIEWS_COUNT_TO_DISPLAY;

屏幕尺寸是这样的:

DisplayMetrics metrics = new DisplayMetrics();
getWindowManager().getDefaultDisplay().getMetrics(metrics).widthPixels;

关于android - 如何在 RecyclerView 中显示确切的项目数量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35153618/

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