GitJoBo

Results 8 comments of GitJoBo

这是由于PhotoViewer里的findImageView函数错了

PagerSnapHelper snapHelper = new PagerSnapHelper(); snapHelper.attachToRecyclerView(recyclerview);

解决了吗?我需要设置第一个是选中的;也是没找到如何设置

这个怎么修复的,我也遇到这问题了

要执行正确的命令,我这边是变体名称没对应上

这是修复后可用的函数 private fun findImageView(group: ViewGroup): ImageView? { for (i in 0 until group.childCount) { val child = group.getChildAt(i) if (child is ImageView) { return child } else if (child is...

我这边也遇到了这个问题,需求是需要获取媒体文件,同时还需要写入配置文件到SD卡根目录。