Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的应用程序中,我配置了一个在我的 authenticationator.xml 中定义的自定义 accountType。我的应用程序创建的帐户已经在全局设置中可见。
由于android已经提供了用于删除和配置此类帐户的用户界面,因此我想从我的应用程序中启动它,因此我不必自己实现此功能。
创建所需意图以直接跳转到我的自定义帐户类型的帐户配置的代码是什么?
import android.provider.Settings; ctx.startActivity(new Intent(Settings.ACTION_SYNC_SETTINGS));
为该意图添加一个名为 Settings.EXTRA_AUTHORITIES 的额外内容,其值是您帐户的权限,您可以将显示的帐户限制为您的帐户。该值必须在字符串数组中。