0

私はそのような問題を抱えています。リサイクラー ビューのすべての画像が右側に転送されます。 スクリーンショット これは私のアダプターです

    adapter = new GalleryAdapter(new ArrayList<>(), galleryImage -> galleryLocationPresenter.openGallery(galleryImage), getContext());
    adapter.setHasStableIds(true);
    recyclerView.addItemDecoration(new ListSpacingDecoration(Helpers.dpToPx(15, getContext())));
    staggeredGridLayoutManager = new StaggeredGridLayoutManager(2, StaggeredGridLayoutManager.VERTICAL);
    staggeredGridLayoutManager.setGapStrategy(StaggeredGridLayoutManager.GAP_HANDLING_NONE);
    recyclerView.setLayoutManager(staggeredGridLayoutManager);
    recyclerView.setAdapter(adapter);

これが私の行ビューです

<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:id="@+id/card_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
card_view:cardCornerRadius="2dp">

<ImageView
    android:id="@+id/image"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:adjustViewBounds="true"
    android:scaleType="centerCrop" />
</android.support.v7.widget.CardView>

ギャップ攻略もやってみGAP_HANDLING_MOVE_ITEMS_BETWEEN_SPANSました。同じこと。

4

0 に答える 0