24

我创建了一个带有虚拟帐户的同步适配器,我不希望它出现在“设置”应用程序的“帐户”列表中,也不想在用户按下“设置”中的“添加帐户”按钮时出现。我在同步适配器定义中尝试了 android:userVisible="false" ,但该帐户仍然出现。我已经在模拟器和 3 个物理设备上尝试过这个。一切正常,因为它同步了我需要的所有数据,唯一的错误是我在列表中看到了帐户,而我不想这样做。

我的authenticator.xml 是:

<account-authenticator xmlns:android="http://schemas.android.com/apk/res/android"
                   android:accountType="net.astagor.android.hhp.account"
                   android:icon="@drawable/ic_launcher"
                   android:smallIcon="@drawable/ic_launcher"
                   android:label="@string/app_name"
    />

我的 syncadapter.xml 是:

<sync-adapter xmlns:android="http://schemas.android.com/apk/res/android"
          android:contentAuthority="net.astagor.android.hhp"
          android:accountType="net.astagor.android.hhp.account"
          android:userVisible="false"
          android:supportsUploading="true"
          android:allowParallelSyncs="false"
          android:isAlwaysSyncable="true"
    />

我像这样添加我的适配器:

 Account account = AuthenticatorService.GetAccount();

 AccountManager accountManager = (AccountManager) context
    .getSystemService(Context.ACCOUNT_SERVICE);

 if (accountManager.addAccountExplicitly(account, null, null)) {

ContentResolver.setIsSyncable(account, StubProvider.AUTHORITY, 1);

ContentResolver.setSyncAutomatically(account,
        StubProvider.AUTHORITY, true);

ContentResolver.addPeriodicSync(account, StubProvider.AUTHORITY,
        new Bundle(), SYNC_FREQUENCY);
 }

我在帐户列表和添加帐户列表中获得了该帐户。

请帮忙!:)

4

2 回答 2

5

我找到了解决方案。这是authenticator.xml的样子:

<account-authenticator xmlns:android="http://schemas.android.com/apk/res/android"
                   android:accountType="net.astagor.android.hhp.account"

    />

你不能有这些行:

               android:icon="@drawable/ic_launcher"
               android:smallIcon="@drawable/ic_launcher"
               android:label="@string/app_name"

如果您放置它们,无论您设置 android:userVisible="false" 与否,该帐户都将可见。

于 2013-12-18T00:14:08.337 回答
3

这不是一个真正的答案,但是如果您从 authenticationator.xml 中删除标签,它不会显示在已添加帐户的列表中,但在单击添加帐户后,该图标在列表中没有标签。丑陋,可能不是一个好主意。(此方法至少在我运行 4.4 的 nexus 4 上隐藏帐户 - 尚未检查其他设备)。

我相信同步适配器中的用户可见标志只会在选择帐户后影响同步部分的显示,您可以在其中查看上次同步时间、设置自动同步设置和触发同步。

我也很想知道这一点。这一定是可能的,因为我没有看到我的帐户列表中到处都是虚拟帐户。所以要么有办法,要么我安装的应用程序几乎都没有使用同步适配器?

于 2013-12-05T13:10:18.563 回答