2
アプリケーション全体のプリファレンスを格納/取得するためにpreferences.xmlファイルを使用したいと思います。私が使用できるように、私は、xmlファイルをどこに保存するか:どこの環境設定のxmlファイルをAndroidに配置しますか?
getSharedPreferences( "好み"、0)
マイあるpreferences.xmlファイル:
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen
xmlns:android="http://schemas.android.com/apk/res/android">
<PreferenceCategory>
<Preference android:key="units_length" android:title="imperial" android:summary="Whatever"></Preference>
<Preference android:title="imperial" android:key="units_weight" android:summary="Whatever"></Preference>
</PreferenceCategory>
</PreferenceScreen>
そして、ここではどのようにありますonCreateメソッドは私のアクティビティのようです:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.results);
// Get preferences
preferences = getSharedPreferences("preferences", 0);
// Fetch the text view
TextView text = (TextView) findViewById(R.id.textView1);
// Set new text
text.setText(preferences.getString("units_length", "nothing"));
}
私のアプリケーションは単に "noth 「ing」。
ありがとうございました。
さて、私はそれをしました、新しい問題、上記の編集を見てください。 –
私はこれを閉じて、新しい問題を開いています。ご回答有難うございます。 –