5

アカウントオーセンティケーターを介してチェックボックスでプリファレンスを設定しています:

Intent settingsIntent = new Intent("android.settings.ACCOUNT_SYNC_SETTINGS");
settingsIntent.putExtra("account", mActiveAccount);
startActivityForResult(settingsIntent, ACCOUNT_COMPLETE);

次のxmlを使用します。

<account-authenticator xmlns:android="http://schemas.android.com/apk/res/android"
android:accountType="com.example.auth"
android:label="@string/auth_label"
android:accountPreferences="@xml/auth_preferences" />

そしてauth_preferences.xmlに私は持っています:

<?xml version="1.0" encoding="UTF-8" ?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<PreferenceCategory android:title="@string/auth_preferences_general_group" />
<PreferenceScreen android:key="account_settings"
    android:title="@string/auth_preferences_general_details_title" 
    android:summary="@string/auth_preferences_general_details_description">
    <intent android:action="com.example.ACCOUNT_SETUP"
        android:targetPackage="com.example.core"
        android:targetClass="com.example.authentication.AuthenticatorAccountOptions" />
</PreferenceScreen>
<PreferenceCategory android:title="@string/auth_preferences_data_sync_group" >
    <CheckBoxPreference
          android:key="checkbox_pref"
          android:title="@string/auth_preferences_data_sync_syncwidget_title" 
          android:summary="@string/auth_preferences_data_sync_syncwidget_description"
          android:defaultValue="true"
          android:persistent="true" />  
</PreferenceCategory>   

しかし、それを取得しようとすると、メインコードのこのチェックボックス設定にアクセスできません:

SharedPreferences prefs = context.getSharedPreferences(PREFERENCES_NAME, Context.MODE_PRIVATE);
boolean isChecked = prefs.getBoolean("checkbox_pref", true);

アカウント認証システムベースの設定にどこからアクセスできるか知っている人はいますか?

4

1 に答える 1

3

に基づいてアクティビティで行われた変更はにauth_preferences.xml保存されcom.android.settings_preferences.xml、アプリケーションのを使用してアクセスすることはできませんgetSharedPreferences(file, context)PreferenceActivity私が見つけた一般的な解決策は、代わりに新しいアカウント設定をトリガーすることです。

于 2012-01-01T22:17:33.310 に答える