android 水平RecyclerView在第一个项目高度之后加上wrap_content

6za6bjd0  于 2022-11-03  发布在  Android
关注(0)|答案(4)|浏览(169)

我有一个水平布局的RecyclerView。各个适配器项的高度可以取决于项的内容。
因此,理论上它可以看起来像下面这样:

我现在遇到的问题是,它wrap_content似乎只关心第一个问题的高度,因为我得到的结果看起来像这样:

正如你所看到的,第4个项目被切断了。但是,如果我把最高的项目放在第一位,它会完美地工作。
而要摆脱明显的解决办法;我不知道这些物品的高度,只能在测试的时候才知道。

adapter_item.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="100dp"
    android:layout_height="wrap_content"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:orientation="vertical"
    android:animateLayoutChanges="true"
    android:padding="@dimen/padding_view_small">

    <ImageView
        android:id="@+id/image"
        android:layout_width="50dp"
        android:layout_height="50dp"
        android:layout_gravity="center_horizontal"
        app:srcCompat="@drawable/flamme"/>

    <TextView
        android:id="@+id/name"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textColor="@color/black"
        android:layout_marginTop="@dimen/padding_view_small"
        android:text="@string/placeholder"
        android:gravity="center_horizontal"/>

</LinearLayout>

parent.xml

<LinearLayout
    android:id="@+id/symbol_list_parent"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:background="@drawable/container_content"
    android:padding="@dimen/padding_view_normal">

    <android.support.v7.widget.RecyclerView
        android:id="@+id/symbol_list"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"/>

</LinearLayout>

Activity.java

...
final ProductPictogramAdapter symbolAdapter = new ProductPictogramAdapter();
final View symbolListParent = findViewById(R.id.symbol_list_parent);
RecyclerView symbolList = findViewById(R.id.symbol_list);
symbolList.setLayoutManager(new LinearLayoutManager(ProductDetailActivity.this, LinearLayoutManager.HORIZONTAL, false));
symbolList.setAdapter(symbolAdapter);
symbolList.setHasFixedSize(true);
hs1ihplo

hs1ihplo1#

由于这个问题是得到了相当多的牵引力,我只张贴了我的个人解决方案的意见,我会提交一个答案。

我决定使用Google's Flexbox layout库来实现我想要的东西。它是非常可定制的,我会推荐给那些试图解决类似问题的人。

o7jaxewo

o7jaxewo2#

试试这个。

mRecyclerView.addOnScrollListener(new RecyclerView.OnScrollListener() {
    @Override
    public void onScrollStateChanged(@NonNull RecyclerView recyclerView, int newState) {
        super.onScrollStateChanged(recyclerView, newState);
        final int newHeight = recyclerView.getMeasuredHeight();
        if (0 != newHeight && minHeight < newHeight) {
        // keep track the height and prevent recycler view optimizing by resizing
            minHeight = newHeight;
            recyclerView.setMinimumHeight(minHeight);
        }
    }
});
vfwfrxfs

vfwfrxfs3#

将imageview高度更改为wrap_content。我不确定,请尝试这样做。

xwmevbvl

xwmevbvl4#

我遇到了用下面的代码解决的同样的错误;

binding.recyclerView.setHasFixedSize(false);

相关问题