Кнопка не будет выполнять дальнейшее изменение цвета фона с использованием общих настроек

#android #button #colors #sharedpreferences

#Android #кнопка #Цвет #sharedpreferences

Вопрос:

мой код изменяет цвет фона в соответствии со значением цвета (т. Е. #FFFFFF = White), введенным в редактируемый текст.

Это работает, однако он принимает только одно нажатие кнопки. Я не могу изменить 2-й (или 3-й и т.д.) Раз с новым значением цвета.

Я предполагаю, что, возможно, кнопке нужен цикл 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 amp;amp; 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:

Удалите setContentView(R.layout.activity_main); вызов в public void button(View view) {} методе. Установка вида делает недействительными все предыдущие findViewById и должна быть вызвана снова.