SyncAdapter android:userVisible属性不起作用

SyncAdapter android:userVisible属性不起作用,第1张

概述根据 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文档

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"         />
总结

以上是内存溢出为你收集整理的SyncAdapter android:userVisible属性不起作用全部内容,希望文章能够帮你解决SyncAdapter android:userVisible属性不起作用所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1125318.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存