0

我在使用共享首选项存储数据时遇到问题。如果我有以下代码并尝试运行它,它会崩溃。我不知道为什么。

public class Favorites extends Activity{

    private static final String TAG_NAME = "title";
    private static final String TAG_URL = "href";


    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.favorites);

        Intent in = getIntent();
        TextView favName = (TextView) findViewById(R.id.textView1);

        String FILENAME = "settings";
        String string = "hello world!";

        SharedPreferences pref = getSharedPreferences("Preference",
                MODE_WORLD_READABLE);
        SharedPreferences.Editor editor = pref.edit();
        editor.putBoolean("keyBoolean", true);
        editor.putFloat("keyFloat", 1.0f);
        editor.putInt("keyInt", 1);
        editor.putLong("keyLong", 1000000L);
        editor.putString("keyString", "Hello Android");
        editor.commit();

        boolean dataFromPrefBool = pref.getBoolean("keyBoolean", false);
        float dataFromPrefflaot = pref.getFloat("keyFloat", 0.0f);
        int dataFromPrefInt = pref.getInt("keyInt", 0);
        long dataFromPrefLong = pref.getLong("keyLong", 0);
        String dataFromPrefString = pref.getString("keyString", null);

        favName.setText(dataFromPrefInt);
}

为什么什么都没有发生?这些只是虚拟值,但仍然没有任何反应

4

2 回答 2

0

改变

SharedPreferences pref = getSharedPreferences("Preference",
            MODE_WORLD_READABLE);

  SharedPreferences pref = getSharedPreferences("Preference",
            MODE_WORLD_WRITABLE);
于 2012-04-20T04:28:10.973 回答
0

试试这个,也许是由于空指针异常。我不确定。

public class Favorites extends Activity{

    private static final String TAG_NAME = "title";
    private static final String TAG_URL = "href";


    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.favorites);

        Intent in = getIntent();
        TextView favName = (TextView) findViewById(R.id.textView1);

        String FILENAME = "settings";
        String string = "hello world!";

        SharedPreferences pref = getSharedPreferences("Preference",
                MODE_WORLD_READABLE);
        SharedPreferences.Editor editor = pref.edit();
        editor.putBoolean("keyBoolean", true);
        editor.putFloat("keyFloat", 1.0f);
        editor.putInt("keyInt", 1);
        editor.putLong("keyLong", 1000000L);
        editor.putString("keyString", "Hello Android");
        editor.commit();

        boolean dataFromPrefBool = pref.getBoolean("keyBoolean", null);
        float dataFromPrefflaot = pref.getFloat("keyFloat", null);
        int dataFromPrefInt = pref.getInt("keyInt", null);
        long dataFromPrefLong = pref.getLong("keyLong", null);
        String dataFromPrefString = pref.getString("keyString", null);

        if(dataFromPrefInt==null)
        {
            favName.setText("");
        }
        else
        {
            favName.setText(dataFromPrefInt);
        }
    }
}
于 2012-04-20T06:23:57.827 回答