1

从上周开始,我在保存偏好方面遇到了一个奇怪的问题。

我正在开发与 android 兼容的电路板。

我面临的实际问题是,

我有 4 个按钮,在按钮上单击我正在更改按钮的背景图像

Onfirstclick -> 将按钮的背景图像更改为突出显示 -> 第二次单击 -> 更改为正常背景图像,在第一次运行时,我保持正常的背景按钮图像

但是在重新启动时,尽管我使用的是共享首选项,但按钮背景图像并没有保存在我的工作板上。

我有一个用于打开和关闭的电源按钮,我正在重新启动我的电路板。

任何图像(正常/突出显示)我在 onclick 中的图像我应该在重新启动板后得到

好处是

           the code is working perfectly in android mobile but not in my board

这是我的代码。

任何帮助总是受到赞赏。

   public class SharedprefsActivity extends Activity  {

    protected static final String TAG = "HvacActivity";
    /** Called when the activity is first created. */
    private Button seatdirnbtn;
    private SharedPreferences prefs;
    private String prefName = "MyPref";
    private SharedPreferences.Editor editor;
    private boolean isclick;
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        seatdirnbtn = (Button) findViewById(R.id.seatdirnbtn);      
        seatdirnbtn.setOnClickListener(listner1);       
    }

    public void onResume() {
        super.onResume();
        getPrefAndButtonState();        
    }

    public void onPause() {
        super.onPause();
        setPrefAndButtonState();
    }

    @Override
    public void onRestart() {
        super.onRestart();
        getPrefAndButtonState();
    }

    @Override
    public void onStop() {
        super.onStop();
        setPrefAndButtonState();
    }

    public void getPrefAndButtonState(){
        prefs = this.getSharedPreferences(prefName, MODE_PRIVATE);
        isclick = prefs.getBoolean("prefName", false);
        System.out.println("bool? " + isclick);
        if (isclick) {
            seatdirnbtn.setBackgroundResource(R.drawable.icon4hlt);
        } else if (!isclick) {
            seatdirnbtn.setBackgroundResource(R.drawable.icon4);
        }
    }

    public void setPrefAndButtonState(){
        editor = prefs.edit();
        editor.putBoolean("prefName", isclick);
        editor.commit();        
        getPrefAndButtonState();
    }

    private View.OnClickListener listner1 = new View.OnClickListener() {    
        public void onClick(View v) {   
            if (isclick) {
                isclick = false;
                setPrefAndButtonState();            
            } else if (!isclick) {
                isclick = true;
                setPrefAndButtonState();
            }   
        }
    };
}
4

1 回答 1

2

尝试使用getApplicationContext()而不是this

setPrefAndButtonState方法中:

public void setPrefAndButtonState(){
      prefs = getApplicationContext().
                getSharedPreferences(prefName, MODE_PRIVATE); <<missing this line
      editor = prefs.edit();
      editor.putBoolean("prefName", isclick);
      editor.commit();        
      getPrefAndButtonState();
    }

并在getPrefAndButtonState方法中

public void getPrefAndButtonState(){
    prefs = getApplicationContext().getSharedPreferences(prefName, MODE_PRIVATE);
    isclick = prefs.getBoolean("prefName", false);
    System.out.println("bool? " + isclick);
    if (isclick) {
        seatdirnbtn.setBackgroundResource(R.drawable.icon4hlt);
    } else if (!isclick) {
        seatdirnbtn.setBackgroundResource(R.drawable.icon4);
    }
}
于 2012-12-21T08:45:59.937 回答