SyncAdapter android:userVisible属性不起作用
作者:互联网
根据android文档
android:userVisible defaults to true and controls whether or not this sync adapter shows up in the Sync Settings screen.
但它在设置中显示它获得的任何价值!
编辑2014年11月3日
我从authenticator.xml中删除了android:icon android:label android:smallIcon,现在它没有显示在Accounts中,但在Samsung Galaxy S4上测试的Add Account上有一个空条目.而在记录中,当从“设置”中打开“帐户”时,这完全崩溃了我的2.3.3模拟器.
解决方法:
我已经实现了我自己的syncadapter,它对我有用,如下所示:
案例1:当android:userVisible =“false”时只有应用程序图标,帐户名称和应用程序标题
<sync-adapter xmlns:android="http://schemas.android.com/apk/res/android"
android:contentAuthority="com.example.kukssyncadapter"
android:accountType="com.example.kukssyncadapter"
android:supportsUploading="false"
android:allowParallelSyncs="false"
android:userVisible="false"
/>
案例2:当android:userVisible =“true”时,您可以从图像中看到应用程序图标,帐户名称和带有同步控制功能的应用程序标题
<sync-adapter xmlns:android="http://schemas.android.com/apk/res/android"
android:contentAuthority="com.example.kukssyncadapter"
android:accountType="com.example.kukssyncadapter"
android:supportsUploading="false"
android:allowParallelSyncs="false"
android:userVisible="true"
/>
标签:android,android-syncadapter 来源: https://codeday.me/bug/20190708/1403484.html