重新打开应用程序后,第一个按钮将永久着色

时间:2017-07-20 01:41:37

标签: java android

我有多个按钮,我希望按钮在点击后变成颜色并再次重新打开按钮就是那种颜色永久性的我想要当用户点击button4时,按钮4在重新打开应用程序时仍然会永久着色。

我现在遇到的问题是我点击任何按钮但是当再次重新打开时,第一个按钮是colour.I尝试将按钮设置为数组,仍然是相同的输出。在选择页面中,我选择其他按钮,但是当再次重新打开时,第一个按钮只有颜色。我想知道代码的问题所在。

编码:

public class MainActivity extends AppCompatActivity {

Toolbar mToolbar;
Button mRedColor;
Button mGreenColor;
Button mYellowColor;
Button[] b=new Button[2];
SharedPreferences mSharedPreferences;
SharedPreferences.Editor edit;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    mSharedPreferences = getSharedPreferences("ButtonColor", MODE_PRIVATE);
    edit = getSharedPreferences("ButtonColor", MODE_PRIVATE).edit();
    mToolbar = (Toolbar) findViewById(R.id.toolbar);
    final Button[] b = new Button[]{(Button) findViewById(R.id.btnRed),
            (Button) findViewById(R.id.btnGreen),
            (Button) findViewById(R.id.btnYellow),};

    mToolbar.setTitle(getResources().getString(R.string.app_name));

    if (getColor() != getResources().getColor(R.color.colorPrimary)) {
            for (int i = 0 ; i<b.length; i++){

                if(b[i].equals(b[0]) ){

                b[0].setBackgroundColor(getColor());
                b[i].setEnabled(false);

                }
                else if (b[i].equals(b[1])){

                        b[1].setBackgroundColor(getColor());
                        b[i].setEnabled(false);
                }else if (b[i].equals(b[2])){

                    b[2].setBackgroundColor(getColor());
                    b[i].setEnabled(false);
                }

            }
    }

    for (int i = 0; i < b.length; i++) {

        b[i].setOnClickListener(new View.OnClickListener() {

            @Override
            public void onClick(View view) {
                switch (view.getId())    //so we get its id here
                {
                    case (R.id.btnRed):
                        b[0].setBackgroundColor(getResources().getColor(R.color.colorRed));
                        storeColor(getResources().getColor(R.color.colorRed));
                        b[0].setEnabled(false);

                        break;
                    case (R.id.btnGreen):
                        b[1].setBackgroundColor(getResources().getColor(R.color.colorGreen));
                        storeColor(getResources().getColor(R.color.colorGreen));
                        b[1].setEnabled(false);
                        break;
                    case (R.id.btnYellow):
                        b[2].setBackgroundColor(getResources().getColor(R.color.colorYellow));
                        storeColor(getResources().getColor(R.color.colorYellow));
                        b[2].setEnabled(false);
                        break;
                }


            }
        });

    }

}
@Override
protected void onResume() {
    super.onResume();
    mSharedPreferences = getSharedPreferences("ButtonColor", MODE_PRIVATE);
    edit=getSharedPreferences("ButtonColor", MODE_PRIVATE).edit();

}

@Override
public void onStop () {
    super.onStop();
}
private void storeColor(int color){
    SharedPreferences mSharedPreferences = getSharedPreferences("ButtonColor", MODE_PRIVATE);
    SharedPreferences.Editor mEditor = mSharedPreferences.edit();
    mEditor.putInt("color", color);
    mEditor.apply();
}

private int getColor(){
    SharedPreferences mSharedPreferences = getSharedPreferences("ButtonColor", MODE_PRIVATE);
    int selectedColor = mSharedPreferences.getInt("color", getResources().getColor(R.color.colorPrimary));
    return  selectedColor;
}
}

希望能理解我的问题,谢谢

2 个答案:

答案 0 :(得分:0)

这是交易:

b[0].setBackgroundColor(getColor())

只需将0替换为i

b[i].setBackgroundColor(getColor())

<强>更新: 存储最后一个选定按钮的索引的更好方法。因此,而不是颜色,存储按钮索引。这就是你现在如何重新打开应用程序后选择了哪个按钮。

答案 1 :(得分:0)

只需将最后一次点击索引存储在SharedPreferences中;重新打开应用程序检查索引并为索引按钮着色。