Android的SharedPreferences不改变(Android SharedPrefere

2019-09-30 07:31发布

所以,我正在学习有关SharedPreferences中的Android。

我想我会很快尝试和嘲笑了简单的东西。 当用户选择从选项(在这种情况下的3个选项)列表中的特定选项 - 布局文件将相应地改变。 然而,它总是假设提供的默认值,因此不会改变时,另一个选项被选中的布局 - 因此选择了其他选项时,它被记录罚款,但布局并没有改变,这使我相信,有可能是在第一时间获取喜好的时候,我在想,如果有人可以快速浏览一下与现货的东西明显,或者不是那么明显与他们的经验/智慧产生的问题 - 这里是代码:

MainActivity.java:

package com.example.preferenceslayout;

import android.app.Activity;
import android.content.Intent;
import android.content.SharedPreferences;
import android.content.SharedPreferences.OnSharedPreferenceChangeListener;
import android.os.Bundle;
import android.preference.PreferenceManager;
import android.view.Menu;
import android.view.MenuItem;

public class MainActivity extends Activity
    implements OnSharedPreferenceChangeListener {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        loadPreferences();
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }

    public boolean onOptionsItemSelected(MenuItem item) {
        switch(item.getItemId()) {
        case R.id.preferences:
            startActivity(new Intent(getApplicationContext(),
                     AppPreferences.class));
            break;
        }
        return false;
    }

    public void loadPreferences() {
        SharedPreferences prefs = getApplicationContext().
            getSharedPreferences("mode", MODE_PRIVATE);
        int layoutPref = prefs.getInt("mode", 10);
        switch(layoutPref) {
        case 10:
            setContentView(R.layout.activity_main);
            break;
        case 20:
            setContentView(R.layout.second_layout);
            break;
        case 30:
            setContentView(R.layout.third_layout);
            break;
        }
        prefs.registerOnSharedPreferenceChangeListener(MainActivity.this);
    }

    @Override
    public void onSharedPreferenceChanged(SharedPreferences arg0, String arg1) {
        loadPreferences();      
    }
}

preference.xml:

<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" >
    <ListPreference
        android:key="mode"
        android:title="@string/mode"
        android:defaultValue="1"
        android:summary="@string/summary"
        android:entries="@array/listArray"
        android:entryValues="@array/listValues" />
</PreferenceScreen>

AppPreferences.xml:

package com.example.preferenceslayout;

import android.os.Bundle;
import android.preference.PreferenceActivity;

public class AppPreferences extends PreferenceActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        addPreferencesFromResource(R.xml.preference);
    }
}

main.xml中:

<menu xmlns:android="http://schemas.android.com/apk/res/android" >
    <item
        android:id="@+id/action_settings"
        android:orderInCategory="100"
        android:showAsAction="never"
        android:title="@string/action_settings"/>
    <item
        android:id="@+id/preferences"
        android:title="Preferences" />
</menu>

PreferencesLayoutManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.preferenceslayout"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="18" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.example.preferenceslayout.MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity android:name="com.example.preferenceslayout.AppPreferences">
            <intent-filter>
                <action android:name=".AppPreferences" />
            </intent-filter>
        </activity>
    </application>
</manifest>

array.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string-array name="listArray">
        <item>10</item>
        <item>20</item>
        <item>30</item>
    </string-array>
    <string-array name="listValues">
        <item>1</item>
        <item>2</item>
    </string-array>
</resources>

Answer 1:

你从来不自己的喜好。 你需要一个prefs.putInt("mode", some_int); 某处。 此外,您的听众无论如何也是没有用处的 - 放弃它。

你正在写的默认共享偏好导致的喜好屏幕写在那里。 “模式”仅仅是个关键 - 有默认共享偏好一个键,一个在您的喜好文件(名为“mode_something.xml”) - 但你(通过首屏自动)写的一个,并且阅读了其他(这是永远不会设置)



Answer 2:

我没看太深入到你的代码,但简要概述后,以下逮住了我的注意:

你在你的ListPreference在preference.xml设置此

android:entries="@array/listArray"
android:entryValues="@array/listValues" 

但在你的array.xml你有你的输入字符串数组中的3项,你的listValues字符串数组中仅有2项

<string-array name="listArray">
    <item>10</item>
    <item>20</item>
    <item>30</item>
</string-array>
<string-array name="listValues">
    <item>1</item>
    <item>2</item>
</string-array>

你应该第三个项目添加到您的listValues字符串数组

BTW:你应该考虑重命名“listArray”,使其更清晰,它拥有你的列表中的条目。 因此,也许称之为“listEntries”。 (记住也改变参考android:entries="@array/listEntries"然后)一般的条目是什么用户实际看到,这些值是什么Android使用。 因此,例如,您的字符串数组可能看起来是这样的:

<string-array name="listEntries">
    <item>one apple</item>
    <item>two apples</item>
    <item>three apples</item>
</string-array>
<string-array name="listValues">
    <item>1</item>
    <item>2</item>
    <item>3</item>
</string-array>


Answer 3:

onSharedPreferenceChanged都会被调用你改变你的喜好,所以不要实例每次新SharedPreferences对象,你改变的一个时间,你必须做的是:

首先,SharedPreferences类属性,这样你就可以在你的活动随时随地访问到的偏好:

private SharedPreferences prefs;

现在的onCreate()调用中:

prefs=PreferenceManager.getDefaultSharedPreferences(this);
prefs.registerOnSharedPreferenceChangeListener(this);

最后,您loadPreferences()方法应该是这样的:

public void loadPreferences() {

    int layoutPref = prefs.getInt("mode", 10);
    switch(layoutPref) {
    case 10:
        setContentView(R.layout.activity_main);
        break;
    case 20:
        setContentView(R.layout.second_layout);
        break;
    case 30:
        setContentView(R.layout.third_layout);
        break;
    }

}

希望它可以帮助你!



文章来源: Android SharedPreferences not changing