使用颜色选择器更改片段中edittext的背景颜色

时间:2017-12-26 06:10:03

标签: android android-fragments android-edittext color-picker

我想使用颜色选择器更改编辑文本的背景颜色。我有一个类,其中有一个editText。我正在使用片段,在片段中正在使用该类的特定editText。在片段中有一个图像视图,单击颜色选择器对话框。

public void onViewCreated(View view, @Nullable Bundle savedInstanceState) {
   super.onViewCreated(view, savedInstanceState);
   EditText et = (EditText) view.findViewById(R.id.txtTest);

   ImageView imgChooser = (ImageView) view.findViewById(R.id.imgPallete);

}

public void onActivityCreated(@Nullable Bundle savedInstanceState) {
    super.onActivityCreated(savedInstanceState);

    imgChooser.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            AmbilWarnaDialog colorpicker = new AmbilWarnaDialog(getContext(), Color.BLACK, new AmbilWarnaDialog.OnAmbilWarnaListener() {

                @Override
                public void onCancel(AmbilWarnaDialog dialog) {

                }

                @Override
                public void onOk(AmbilWarnaDialog dialog, int color) {
                    et.setBackgroundColor(color);
                }
            });
            colorpicker.show();
        }
    });

}

但这不起作用并显示java.lang.NullPointerException。有人可以帮帮我吗?我是android studio的新手。

错误日志如下

java.lang.NullPointerException
                                                                                                 at com.example.sudeepbajracharya.myapplication.BackGround$1$1.onOk(BackGround.java:61)
                                                                                                 at yuku.ambilwarna.AmbilWarnaDialog$6.onClick(AmbilWarnaDialog.java:179)
                                                                                                 at com.android.internal.app.AlertController$ButtonHandler.handleMessage(AlertController.java:169)
                                                                                                 at android.os.Handler.dispatchMessage(Handler.java:107)
                                                                                                 at android.os.Looper.loop(Looper.java:194)
                                                                                                 at android.app.ActivityThread.main(ActivityThread.java:5371)
                                                                                                 at java.lang.reflect.Method.invokeNative(Native Method)
                                                                                                 at java.lang.reflect.Method.invoke(Method.java:525)
                                                                                                 at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:833)
                                                                                                 at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:600)
                                                                                                 at dalvik.system.NativeStart.main(Native Method)

问题是在第61行和在线BackGround.java:61中显示有        et.setBackgroundColor(颜色);

2 个答案:

答案 0 :(得分:0)

您的EditText未正确引用,请尝试以下代码

private EditText et;
private ImageView imgChooser;

public void onViewCreated(View view, @Nullable Bundle savedInstanceState) {
   super.onViewCreated(view, savedInstanceState);
   et = (EditText) view.findViewById(R.id.txtTest);

   imgChooser = (ImageView) view.findViewById(R.id.imgPallete);

}

public void onActivityCreated(@Nullable Bundle savedInstanceState) {
    super.onActivityCreated(savedInstanceState);

    imgChooser.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            AmbilWarnaDialog colorpicker = new AmbilWarnaDialog(getContext(), Color.BLACK, new AmbilWarnaDialog.OnAmbilWarnaListener() {

                @Override
                public void onCancel(AmbilWarnaDialog dialog) {

                }

                @Override
                public void onOk(AmbilWarnaDialog dialog, int color) {
                    et.setBackgroundColor(color);
                }
            });
            colorpicker.show();
        }
    });

}

答案 1 :(得分:0)

您可以使用

edittext.setBackgroundResource(R.color.white);

或者如果上面的代码段不起作用,那么您可以尝试下面的代码

如果您正在参加活动,请使用此

edittext.setBackground(ContextCompat.getColor(this,R.color.yourcolor));

如果您在代码

下使用片段
edittext.setBackground(ContextCompat.getColor(getActivity(),R.color.yourcolor));

如果您在recyclerview适配器中使用以下代码

edittext.setBackground(ContextCompat.getColor(context,R.color.yourcolor));

因为,edittext.setBackgroundColor()采用数字形式的颜色(例如,红色为0xFFFF0000)。 R.color.white也是一个数字。

并确保您对edittext

有正确的引用