我正在使用带有 Kotlin 的交错布局管理器将本地手机存储中的图像和视频设置为 recyclerview。一切都很好,但在第一次启动时,recyclerview 仅在一列中显示所有图像和视频(仅在右侧),在 recyclerview 上引用一切正常。我已设置跨度计数 2 并使用滑行。我是新手,在此先感谢。
这是一些代码。
recyclerview?.setHasFixedSize(true)
recyclerview.layoutManager = StaggeredGridLayoutManager(2,StaggeredGridLayoutManager.VERTICAL)
adapter = ImageAdapter(activity)
recyclerview?.adapter = adapter
adapter?.notifyDataSetChanged()
Layout for recyclerview:
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/img"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:scaleType="fitCenter" />
</RelativeLayout>