Android AccountManager 和 SyncManager 实现导致仅“名称”字段出现在“添加/编辑联系人”屏幕中

发布于 2024-10-17 06:28:40 字数 1656 浏览 1 评论 0原文

我们实现了 Android 的 Account Manager 和 Sync Manager api 来创建联系人同步。但是,当用户在添加联系人时选择我们的帐户时,它只显示姓名字段,所有其他字段都会消失。

这是我的清单中的内容

<activity android:name=".AuthenticatorActivity" android:label="iAnywhere Login"
            android:theme="@android:style/Theme.Dialog"
            android:excludeFromRecents="true"></activity>
        <service android:name=".accounts.AuthenticationService">
            <intent-filter>
                <action android:name="android.accounts.AccountAuthenticator"></action>
            </intent-filter>
            <meta-data android:name="android.accounts.AccountAuthenticator"
                android:resource="@xml/authenticator">

            </meta-data>
        </service>

        <service
            android:name=".accounts.SyncService"
            android:exported="true">
            <intent-filter>
                <action
                    android:name="android.content.SyncAdapter" />
            </intent-filter>
            <meta-data
                android:name="android.content.SyncAdapter"
                android:resource="@xml/syncadapter" />
        </service>

这是我的syncadapter.xml 和authenticator.xml 中的内容

<sync-adapter xmlns:android="http://schemas.android.com/apk/res/android"
    android:contentAuthority="com.android.contacts"
    android:accountType="com.rahul.utility.contacts"
/>

在添加自定义字段时看到人们谈论此类问题,这是联系人应用程序中的一个错误。我还检查了 Android 源代码中的 Exchange 电子邮件客户端的代码,它们似乎所做的与我所做的完全相同,但是当您为 Exchange 帐户选择“添加联系人”时,它仍然会显示联系人中的所有字段。

We implemented Android's Account Manager and Sync Manager api to create contact sync. But when user selects our account while adding contact, it only displays Name fields and all other fields disappear.

Here is what I have in my manifest

<activity android:name=".AuthenticatorActivity" android:label="iAnywhere Login"
            android:theme="@android:style/Theme.Dialog"
            android:excludeFromRecents="true"></activity>
        <service android:name=".accounts.AuthenticationService">
            <intent-filter>
                <action android:name="android.accounts.AccountAuthenticator"></action>
            </intent-filter>
            <meta-data android:name="android.accounts.AccountAuthenticator"
                android:resource="@xml/authenticator">

            </meta-data>
        </service>

        <service
            android:name=".accounts.SyncService"
            android:exported="true">
            <intent-filter>
                <action
                    android:name="android.content.SyncAdapter" />
            </intent-filter>
            <meta-data
                android:name="android.content.SyncAdapter"
                android:resource="@xml/syncadapter" />
        </service>

This is what I have in my syncadapter.xml and authenticator.xml

<sync-adapter xmlns:android="http://schemas.android.com/apk/res/android"
    android:contentAuthority="com.android.contacts"
    android:accountType="com.rahul.utility.contacts"
/>

Have seen people talk about this kind of issue while adding custom fields that it is a bug in Contact application. I also checked out the code of Exchange Email client in Android source code and they seems to be doing exactly same as what I did, but still when you select Add Contact for an Exchange account it shows up all the fields in the contact.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

风尘浪孓 2024-10-24 06:28:40

经过大量研究和查看 Android 代码库后,我发现 Android 仅检查帐户类型为 Google 或默认以呈现所有字段。如果账户类型为其他类型,则仅显示基本的两个字段。除了创建自己的联系人添加/编辑屏幕(悲伤!真的)之外,没有其他解决办法。

Android 有可能为其他人提供一个接口,以在屏幕上返回他们想要的字段类型,但目前还没有以这种方式实现。

After a lot of research and looking into the Android code base I found that Android only checks the account type to be either of Google or Default for rendering all the fields. If the account type is of any other type, it only displays basic two fields. There are no work around to it apart from creating your own Contact Add / Edit screen (Sad! Really).

There was a possibility where Android could have provided an interface for others to return field types which they wanted on the screen but it is not implemented that way as of now.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文