我是android开发的新手。
该项目是关于使用AbstractThreadedSyncAdapter实现AbstractAccountAuthenticator,以将服务器上的某些数据与内容提供者同步。
我做了所有内容,并且添加帐户和同步都没有任何问题。
现在我尝试添加一个Preference-Screen就像在android参考中所建议的那样(搜索AbstractAccountAuthenticator,它在那里解释)通过xml像这样:
autenticator.xml:
<account-authenticator xmlns:android="http://schemas.android.com/apk/res/android"
android:accountType="typeOfAuthenticator"
android:icon="@drawable/icon"
android:smallIcon="@drawable/miniIcon"
android:label="@string/label"
android:accountPreferences="@xml/account_preferences"
/>
Preference-Screen-xml如下所示:
account_preferences.xml:
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<PreferenceCategory android:title="@string/pref_cat_general">
<PreferenceScreen android:key="@string/pref_cat_scr_keygen" android:title="@string/pref_cat_scr_keygen_title" android:summary="@string/pref_cat_scr_keygen_summary">
<intent android:action="android.intent.action.VIEW" android:targetPackage="com.android.clean" android:targetClass="com.android.clean.KeygenAct" />
</PreferenceScreen>
</PreferenceCategory>
</PreferenceScreen>
屏幕应该是它应该如何,但这就是问题:当我点击PreferenceScreen意图导致系统崩溃(在模拟器和我的HTC-Desire中)。
Logcat说:
ERROR / AndroidRuntime(18754): android.util.AndroidRuntimeException: 从外部调用startActivity() 一个Activity上下文需要 FLAG_ACTIVITY_NEW_TASK标志。这是 真的你想要什么?
清单中定义活动的部分:
<activity android:name=".KeygenAct">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
整个测试代码(这是我找到问题的基本要点的项目)是在googlecode(http://code.google.com/p/cleanproject/source/browse/)找到(Eclipse-Project)
谢谢你的帮助, Esentian
p.s。:keygen不是密钥生成器,它意味着更多key_general。有点不好意思表达;)
答案 0 :(得分:8)
我遇到了同样的问题并且刚刚发现,如果你将你的偏好改为:
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<PreferenceCategory android:title="@string/pref_cat_general">
</PreferenceCategory>
<PreferenceScreen android:key="@string/pref_cat_scr_keygen" android:title="@string/pref_cat_scr_keygen_title" android:summary="@string/pref_cat_scr_keygen_summary">
<intent android:action="android.intent.action.VIEW" android:targetPackage="com.android.clean" android:targetClass="com.android.clean.KeygenAct" />
</PreferenceScreen>
</PreferenceScreen>
然后按预期工作。这很奇怪,因为我希望PreferenceCategory将项目分组为其子项......为什么它会导致这种无关(?)错误?