Изменить цвет фона кнопок из другого действия наCheckedChange с помощью общих настроек (?) - PullRequest
0 голосов
/ 19 мая 2018

У меня есть 4 кнопки в MainActivity, которые приводят к различным действиям, и по умолчанию они настроены на фоновое изображение.

Я нажимаю кнопку в основном действии, и это приводит меня к действию Options, где у меня естьпереключатель.'

//creates instance of the button and redirects to appropriate activity/class on button click
        //options
        Button options = findViewById(R.id.options);
        options.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Intent intentOptions = new Intent(MainActivity.this, Options.class);
                startActivity(intentOptions);
            }
        });

'

Когда этот переключатель установлен, я хочу, чтобы фон Настройки (для обратной связи с пользователем) изменился на цвет и поэтому 4 кнопки в MainActivity (я не хочуstart MainActivity).

Однако, очевидно, я получаю ошибку ссылки на нулевой объект, потому что я пытаюсь изменить что-то в другом действии.

Я прочитал несколько похожих тем здесь и понял, что должен использовать Shared Preference для сохранения чего-то (что?), Что позволит мне изменить фон кнопок в другом упражнении, а затем передать его (как?) в Options и передайте его обратно (?) из Options on Switch check (???).

Я новичок в Java и Android, и я не могу понять, как решить мою проблему.

Код в классе параметров:

`
@Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.options);
        //on toggle switch changes options background and activities buttons background in main layout to plain color
            final Switch optionPlainColored = findViewById(R.id.switch1);
            optionPlainColored.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
                @Override
                public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
                    ImageView background = findViewById(R.id.background);
                    Button attractionsAndArchitecture = findViewById(R.id.attractions_and_architecture);
                    Button barsAndRestaurants = findViewById(R.id.bars_and_restaurants);
                    Button sportAndRecreations = findViewById(R.id.sports_and_recreation);
                    Button nightlifeAndCulture = findViewById(R.id.culture_and_nightlife);
                    //on switch toggle changes background of options activity and 4 buttons in main activity
                    if(optionPlainColored.isChecked()){
                        background.setImageResource(R.drawable.setoptionsbackgroundcolor2);
                        attractionsAndArchitecture.setBackgroundColor(getResources().getColor(R.color.attractionsPlainColor));
                        barsAndRestaurants.setBackgroundColor(getResources().getColor(R.color.barsPlainColor));
                        sportAndRecreations.setBackgroundColor(getResources().getColor(R.color.sportsPlainColor));
                       nightlifeAndCulture.setBackgroundColor(getResources().getColor(R.color.culturePlainColor));
                    }else{
                        //when unchecked reverses the change
                       background.setImageResource(R.drawable.optionsbackground);
                       attractionsAndArchitecture.setBackground(getResources().getDrawable(R.drawable.placestovisitbackground));
                       barsAndRestaurants.setBackground(getResources().getDrawable(R.drawable.barandrestuarantsbackground));
                       sportAndRecreations.setBackground(getResources().getDrawable(R.drawable.sportandrecreationbackground));
                       nightlifeAndCulture.setBackground(getResources().getDrawable(R.drawable.nightlifeandculturebackground));

                    }

                }
            });
            //displays toast message about the switch
            Toast.makeText(getApplicationContext(), "Toggling the switch will change background color of the Options and Homescreen to plain colored one",
                    Toast.LENGTH_LONG).show();
    }

`

Нулевая ссылка на объект в строках, где я меняю фон.

XML для MainActivity:

'<?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"
    android:background="@drawable/backgroundinfoadditional"
    tools:context=".MainActivity">

    <Button
        android:id="@+id/attractions_and_architecture"
        style="@style/buttonToActivity"
        android:layout_width="205dp"
        android:layout_height="285dp"
        android:layout_marginBottom="8dp"
        android:background="@drawable/placestovisitbackground"
        android:text="@string/attractions_and_architecture"
        app:layout_constraintBottom_toTopOf="@+id/title"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.0"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <Button
        android:id="@+id/bars_and_restaurants"
        style="@style/buttonToActivity"
        android:layout_width="208dp"
        android:layout_height="280dp"
        android:layout_marginBottom="8dp"
        android:background="@drawable/barandrestuarantsbackground"
        android:text="@string/bars_and_restaurants"
        app:layout_constraintBottom_toTopOf="@+id/title"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="1.0"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintVertical_bias="0.0" />

    <Button
        android:id="@+id/sports_and_recreation"
        style="@style/buttonToActivity"
        android:layout_width="208dp"
        android:layout_height="284dp"
        android:background="@drawable/sportandrecreationbackground"
        android:text="@string/sports_and_recreation"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.0"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/title"
        app:layout_constraintVertical_bias="0.0" />

    <Button
        android:id="@+id/culture_and_nightlife"
        style="@style/buttonToActivity"
        android:layout_width="204dp"
        android:layout_height="282dp"
        android:background="@drawable/nightlifeandculturebackground"
        android:text="@string/culture_and_nightlife"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="1.0"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/title" />


    <Button
        android:id="@+id/options"
        style="@style/options"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.024"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintVertical_bias="1.0" />

    <Button
        android:id="@+id/info"
        style="@style/info"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.952"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/title"
        app:layout_constraintVertical_bias="1.0" />

    <TextView
        android:id="@+id/title"
        style="@style/title"
        android:layout_width="match_parent"
        android:layout_height="39dp"
        android:text="@string/moscow_concise_guide"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.0"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

</android.support.constraint.ConstraintLayout>

'

Ответы [ 2 ]

0 голосов
/ 20 мая 2018

Получил ответ, который работал из другого источника, разместив его здесь (ЭТО НЕ ИСПОЛЬЗУЕТ ОБЩИЕ ПРЕДПОЧТЕНИЯ): «Я думаю, что альтернативой использованию отдельного Действия для опций является использование DialogFragment. Это позволило бы показатьплавающее окно в верхней части макета MainActivity и загрузка туда макета параметров, включая коммутатор.

Следуя этой идее, вместо нового действия вам потребуется создать DialogFragment для параметров.

Тогда, скажем, у вас есть кнопка в вашей деятельности, и вы хотите изменить цвет. Вы можете обратиться к кнопке следующим образом

getActivity (). FindViewById (R.id.button)и это все: small_smile:

Таким образом, вы можете получить доступ к любому представлению в своей деятельности, изменить цвет фона, назначить другое изображение или что угодно, без необходимости работать с настройками или получать доступ к другой активности."

Класс OptionsDialogFragment: '

import android.app.DialogFragment;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.CompoundButton;
import android.widget.Switch;

public class OptionsDialogFragment extends DialogFragment {
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {

        // Here we inflate the layout to use with the options dialog
        View dialogView = inflater.inflate(R.layout.options, container, false);

        final Switch optionPlainColored = dialogView.findViewById(R.id.switch1);

        optionPlainColored.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
            @Override
            public void onCheckedChanged(CompoundButton compoundButton, boolean b) {

                if(optionPlainColored.isChecked()){
                    // we use getActivity() to refer to the views in the Activity layout.
                    getActivity().findViewById(R.id.attractions_and_architecture).setBackgroundColor(getResources().getColor(R.color.attractionsPlainColor));
                    getActivity().findViewById(R.id.bars_and_restaurants).setBackgroundColor(getResources().getColor(R.color.barsPlainColor));
                    getActivity().findViewById(R.id.sports_and_recreation).setBackgroundColor(getResources().getColor(R.color.sportsPlainColor));
                    getActivity().findViewById(R.id.culture_and_nightlife).setBackgroundColor(getResources().getColor(R.color.culturePlainColor));
                } else {
                    getActivity().findViewById(R.id.attractions_and_architecture).setBackground(getResources().getDrawable(R.drawable.backgroundattractionsandarchitecture));
                    getActivity().findViewById(R.id.bars_and_restaurants).setBackground(getResources().getDrawable(R.drawable.backgroundbarsandrestaurants));
                    getActivity().findViewById(R.id.sports_and_recreation).setBackground(getResources().getDrawable(R.drawable.backgroundsportsandrecreation));
                    getActivity().findViewById(R.id.culture_and_nightlife).setBackground(getResources().getDrawable(R.drawable.backgroundnightlifeandculture));
                }
            }
        });

        return dialogView;
    }
}'

В MainActivity:

'        Button options = findViewById(R.id.options);
        options.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                OptionsDialogFragment dialogFrag = new OptionsDialogFragment();
                FragmentManager fm = getFragmentManager();
                dialogFrag.show(fm, "Options");

            }
        });'
0 голосов
/ 19 мая 2018

использовать обработчик для передачи сообщения в mainacctivity.как

if (MainActivity.xhandler != null) {
        Message msg = new Message();
        msg.what = message;
        msg.obj = data1;
        MainActivity.xhandler.sendMessage(msg);
}

В MainActivity определите обработчик.

Handler xhandler=new Handler(new Handler.Callback() {
        @Override
        public boolean handleMessage(Message msg) {
            return false;
        }
    });
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...