我已经用谷歌搜索了这个问题,但我没有找到任何解决方案。
我创建了自己的自定义帐户。当我尝试使用以下代码以编程方式删除帐户时,不会删除该帐户:
Account systemAccount = new Account(mainAccount.getDisplayName(),
getResources().getString(R.string.account_type));
AccountManager.get(Accounts.this).removeAccount(systemAccount, null, null);
甚至,当我尝试从设置中删除该帐户时,什么也没有发生。仅当我卸载该应用程序时,该帐户才会被删除。
我应该怎么办?