按钮不会使用共享的首选项执行进一步的背景颜色更改

时间:2019-03-14 15:24:31

标签: android button colors sharedpreferences

我的代码根据输入到编辑文本中的颜色值(即#FFFFFF =白色)更改背景颜色。

它确实可以工作,但是只接受一个按钮单击。我无法用新的颜色值更改第二次(或第三次等)时间。

我的猜测也许是按钮需要根据每个单独的按钮单击应用一个for循环来刷新结果?

为什么会这样?

MainActivity:

import android.content.Context;
import android.content.SharedPreferences;
import android.graphics.Color;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;


public class MainActivity extends AppCompatActivity {

    public SharedPreferences sharedPreferences;
    public Context context;
    EditText et;
    Button button;
    String color;
    String getColor;


    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        et = (EditText)findViewById(R.id.color);
        sharedPreferences = getSharedPreferences("main", MODE_PRIVATE);

        if(getColor==null){
            getWindow().getDecorView().setBackgroundColor(Color.WHITE);
        }else{
            getWindow().getDecorView().setBackgroundColor(Color.parseColor(getColor));
            readLoginStatus();
        }
    }

    public void button(View view) {
        color = et.getText().toString();
        if(color.length()==7 && color.substring(0,1).equals("#")){
            setContentView(R.layout.activity_main);
            getWindow().getDecorView().setBackgroundColor(Color.parseColor(color));
            writeLoginStatus(true);
        }

    }


    public void writeLoginStatus(boolean status){
        SharedPreferences.Editor editor = sharedPreferences.edit();
        editor.putBoolean("main", status);
        editor.commit();
    }

    public boolean readLoginStatus(){
        boolean status = false;
        status = sharedPreferences.getBoolean("main", false);
        return status;
    }

}

activity_main.XML:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <EditText
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="8dp"
        android:id="@+id/color"
        android:layout_marginBottom="8dp"
        android:hint="TYPE HERE YOUR COLOR"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        tools:layout_editor_absoluteX="0dp" />

    <Button
        android:id="@+id/button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginStart="8dp"
        android:layout_marginLeft="8dp"
        android:layout_marginTop="8dp"
        android:layout_marginEnd="8dp"
        android:layout_marginRight="8dp"
        android:layout_marginBottom="8dp"
        android:onClick="button"
        android:text="Button"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintVertical_bias="0.386" />
</android.support.constraint.ConstraintLayout>

1 个答案:

答案 0 :(得分:0)

删除setContentView(R.layout.activity_main);方法中的public void button(View view) {}调用。设置视图会使所有先前的findViewById无效,必须再次调用。