0

Java で Shared Preferences を使用して変数を保存しようとしています。これにより、プログラムを実行するたびにカウントが保持されます。使い方がわかりません。Share Preferences クラスを作成する必要がありますか、それとも使用できますか。たとえば、私のコードは次のようになります。

 if(action.equals ("insert")
 {
 int booking_id = (initially be zero);
 booking_id += 1; 
 // I want booking Id to retain its value and not become zero the next time I run it.

 }
4

1 に答える 1

0

Android で利用可能な Shared Preferences を意味していると思います。

次の値を SharedPreferences に問い合わせますbooking_id

SharedPreferences pref = this.getSharedPreferences("com.example.app", Context.MODE_PRIVATE);
int booking_id = pref.getInt("booking_id", 0); // 0 is the default value if the preferences do not find the "booking_id"
于 2013-09-16T17:41:37.050 に答える