Android 8.1 cause crash to EditText

本文介绍了一个关于Android应用中使用Autofill框架时出现的崩溃问题及其解决方案。问题出现在点击EditText字段时,特别是在WebView中。错误的原因在于attachBaseContext方法中使用了错误的Context。文章提供了一段修改前后的代码对比,展示了如何正确地使用Context来避免Autofill框架引起的崩溃。
摘要由CSDN通过智能技术生成

https://stackoverflow.com/questions/47763756/autofill-framework-updates-8-1-cause-crash-to-edittext

down vote

I had similiar problem. Same error when tapping on EditText, of field in Webview. In my case the problem was using wrong Context within attachBaseContext method.

Old code

override fun attachBaseContext(newBase: Context?) {
   super.attachBaseContext(applicationContext.createConfigurationContext(...))
}

Fixed code:

override fun attachBaseContext(newBase: Context?) {
    super.attachBaseContext(newBase.createConfigurationContext(...))
}

No more errors with Autofill framework. I suggest checking if You didn't make similar mistake missusing Context.

转载于:https://my.oschina.net/gabriel1215/blog/1919226

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值