没有额外空间的项目

时间:2016-06-21 07:30:49

标签: android android-recyclerview

我的布局中有recyclerview。 我的问题是recyclerview中的额外空间。 我该如何删除它? 这是我的代码:
回收物品:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="wrap_content"
android:layout_height="match_parent">

<ImageView
    android:id="@+id/imgGalleryImage"
    android:layout_height="match_parent"
    android:layout_width="wrap_content"
    android:layout_margin="10dp"
    android:src="@drawable/slider1"
    xmlns:android="http://schemas.android.com/apk/res/android" />

recuclerview:

    <android.support.v7.widget.RecyclerView
    android:id="@+id/photographerImageGalleryRecycler"
    android:layout_width="match_parent"
    android:layout_height="200dp"
    android:scrollbars="horizontal"
    android:layout_centerInParent="true"
    android:layout_marginTop="10dp"
    android:layout_marginBottom="10dp"
    android:visibility="visible"
    android:choiceMode="singleChoice" />

和代码:

        List<BundlePhotographerImageGallery> photographerImageGalleryList = new ArrayList<>();

    for (int i = 0; i < 20; i++) {
        BundlePhotographerImageGallery bundlePhotographerImageGallery = new BundlePhotographerImageGallery();
        bundlePhotographerImageGallery.image = "slider1";
        photographerImageGalleryList.add(bundlePhotographerImageGallery);
    }

    AdapterPhotographerImageGalleryRecycler adapterPhotographerImageGalleryRecycler = new AdapterPhotographerImageGalleryRecycler(photographerImageGalleryList, getApplicationContext());
    photographerImageGalleryRecycler.setLayoutManager(linearLayoutManager1);
    photographerImageGalleryRecycler.setAdapter(adapterPhotographerImageGalleryRecycler);

和图片: enter image description here

1 个答案:

答案 0 :(得分:1)

从回收商视图和imageview中删除边距