编程语言
首页 > 编程语言> > 禁用应用程序的Android O自动填充服务

禁用应用程序的Android O自动填充服务

作者:互联网

Android O具有支持Auto-filling字段的功能.有什么办法可以为特定的应用程序禁用它.那是我想强制我的应用程序不使用自动填充服务.

可能吗 ?

要阻止整个活动的自动填充,请在活动的onCreate()中使用:

getWindow()
  .getDecorView()
  .setImportantForAutofill(View.IMPORTANT_FOR_AUTOFILL_NO_EXCLUDE_DESCENDANTS);

有没有比这更好的方法?

解决方法:

Is it possible ?

不是我知道的.当然,没有任何记录.

Is there any better method than this ?

不是我知道的.

标签:android-8-0-oreo,android,textview,autofill,android-autofill-manager
来源: https://codeday.me/bug/20190917/1810019.html