2017-11-02 21 views
-1

私のアプリには、その日が以前にクリックされた日である場合には無効にするボタンがありますが、その日が無効になる場合でもボタンをオンラインに戻しますそれ。アプリの再起動後にボタンを無効にする

shDayMed = sh.getInt("daymed", calendar.get(Calendar.DAY_OF_MONTH)); 
int day = shDayMed; 
int dayAtual = calendar.get(Calendar.DAY_OF_MONTH); 
if (day != dayAtual) { 
    save.setEnabled(true); 
    pesohj.setEnabled(true); 
} else { 
    save.setEnabled(false); 
    pesohj.setEnabled(false); 
} 

日が現在の日でない場合、私は、これは間違っている部分であると信じて、

+0

クリックした日をどこに保存していますか?そのコードは欠落しています。 – Jeffrey

+1

'SharedPreferences'を使用してください。https://developer.android.com/training/basics/data-storage/shared-preferences.html –

+0

データ保存メソッドを投稿してください。 –

答えて

1

ストアの最後の日が続いSharedPreferencesでクリックした...真のボタンを設定するが、その反対をやってなければなりませんActivityを起動するときに値を取得して、ボタンを無効にするか有効にするかを決定します。

1

アプリを閉じて再起動しても値を把握したい場合は、SharedPreferencesを使用する必要があります。あなたがコードに入れた変数は、アプリケーションが終了すると削除されます。

保存このような共有好みに変数:

SharedPreferences sharedPrefs = PreferenceManager.getDeafaultSharedPreferences(this); 
SharedPreferences.Editor editor = sharedPrefs.edit() 
editor.putInt("Day", Calendar.DAY_OF_THE_MONTH); 
editor.apply() 

してから使用してそれを取得:

int dayAtual = sharedPrefs.getInt("Day", -1 /* this is the default value if the pref isn't found*/) 

希望これはあなたを助けました。

関連する問題