我正在尝试将我的应用程序转移到" Accounts Section"的设置。因此,当用户点击添加帐户时,我的应用名称可见。可以找到完整的代码here 我创建了一个身份验证服务。这就是我的清单看起来像
<service android:name=".AuthenticatorService">
<intent-filter>
<action android:name="android.accounts.AccountAuthenticator" />
</intent-filter>
<meta-data android:name="android.accounts.AccountAuthenticator"
android:resource="@xml/authenticator" />
</service>
我还创建了一个&#34; authenticator.xml&#34;
<?xml version="1.0" encoding="utf-8"?>
<account-authenticator xmlns:android="http://schemas.android.com/apk/res/android"
android:accountType="com.udinic.auth_example"
android:icon="@drawable/ic_launcher"
android:smallIcon="@drawable/ic_launcher"
android:label="testing"
android:accountPreferences="@xml/prefs"/>
但我仍然没有在帐户下看到我的应用程序。我关注this tutorial 但它不起作用。你能告诉我我做错了什么吗?
答案 0 :(得分:1)
使用资源字符串代替标签中的文字文本。
“ authenticator.xml”
android:label="@string/some_label"