WeiLianYang

Results 12 comments of WeiLianYang

https://github.com/Yalantis/uCrop

https://github.com/yanzhenjie/Album/issues/305#issue-613822420 我之前提过的,后来自己关了,严总肯定很忙

@Dona278 Thanks very much! I've solved the problem.

相同的问题,请问解决了吗?

ViewPager2 + Fragment + SmartRefreshLayout + RecyclerView 碰到相同的问题,最后一个 item 被 footer 遮挡,RecyclerView 的 ViewHolder 的 onBindViewHolder 方法被重复调用。现在在最外层的 ViewPager 套上一个 LinearLayout ,android:layout_height="match_parent" 。问题解决了

fix: ```kotlin class CropCircleWithBorder constructor( private val borderSize: Int, private val borderColor: Int ) : Transformer() { override fun transform( source: Bitmap, destination: Bitmap ): Bitmap { CropCircle().transform(source, destination) destination.density...

> 鸡哥,能处理一下BaseVmVbFragment中 val mViewBind get() = _binding!! 其中mViewBind可能在使用的时候为空的问题? 接触kotlin不久,问题肤质比较浅,望解答 这个一般是你的子 Fragment 被 销 毁后,在 onDestroyView() 中 _binding = null,所以你在 fragment 的生命周期之外 去使用 mViewBind ,会发生 NPE 的。这个置 null 也是谷歌推荐的,fragment 可能未附加到或已经脱离宿主 activity,所以...

> AndroidManifest.xml中已经添加了`` ,但是还是同样的问题,无法提交Google Play审核,Google Play提示如下: “软件包安装请求权限”声明不完整 所有使用 REQUEST_INSTALL_PACKAGES 权限的开发者都必须填写此声明,否则应从其应用的清单中移除该权限 com.blankj:utilcodex:1.31.1 没有发现这个权限呢,REQUEST_INSTALL_PACKAGES ,你确定是由这个库合并进来的 ?

我是这么设置的,供你参考: ```kotlin loadingDialog = MaterialDialog(this) .cancelable(true) .cancelOnTouchOutside(false) .cornerRadius(12f) .maxWidth(res = R.dimen.space_180) .customView(R.layout.dialog_progress_loading) .lifecycleOwner(this) ```

动态注册广播,根据 谷歌官方的解释是有例外情况的,动态注册系统广播 不需要指定 导出标识。另外 在7.0及以上,即使在清单文件中静态注册了,也收不到这个广播。动态注册例外参见:https://developer.android.com/about/versions/14/behavior-changes-14?hl=zh-cn#system-broadcasts