我在应用程序中使用过编辑文本,并且当聚焦于编辑文本时,我想更改背景。我写了一些代码,但是我遇到了一个问题。我需要双击编辑文本以显示键盘。

这是我的代码:

  private View.OnFocusChangeListener myEditTextFocus =  new View.OnFocusChangeListener() {
    public void onFocusChange(View view, boolean hasfocus) {
        if (hasfocus) {
            ((EditText) view).setBackgroundResource(R.drawable.edittext_input_background_focus);

            ((EditText) view).setTextColor(Color.parseColor("#4d4d4d"));

        }
        else {
            ((EditText) view).setBackgroundResource(R.drawable.edittext_input_background_not_focus);

        }
    };
};

问题是这段代码是因为我注释了它,并且一切都很完美。我的代码有什么问题?或者,还有其他解决方案吗?

最佳答案

//遵循以下代码

将这3个可绘制文件放在res/drawable文件夹中

simple_edittext.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:padding="10dp"
    android:shape="rectangle" >

    <solid android:color="#FFFFFF" />

    <stroke
        android:width="3dp"
        android:color="#FB9820" />

    <corners
        android:bottomLeftRadius="5dp"
        android:bottomRightRadius="5dp"
        android:topLeftRadius="5dp"
        android:topRightRadius="5dp" />

</shape>

focus_edittext.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:padding="10dp"
    android:shape="rectangle" >
    <solid android:color="#58ACFA" />

    <stroke
        android:width="3dp"
        android:color="#FB9820" />
    <corners
        android:bottomLeftRadius="5dp"
        android:bottomRightRadius="5dp"
        android:topLeftRadius="5dp"
        android:topRightRadius="5dp" />
</shape>

selector_edittext.xml
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_focused="true" android:drawable="@drawable/focus_edittext"/>
    <item android:drawable="@drawable/simple_edittext" />
</selector>

并像这样使用这些小块:
 <EditText
        android:id="@+id/layout1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:padding="10dp"
        android:layout_marginBottom="10dp"
        android:background="@drawable/selector_edittext"
        android:text="@string/hello_world" />

    <EditText
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@+id/layout1"
        android:padding="10dp"
        android:background="@drawable/selector_edittext"
        android:text="@string/hello_world" />

关于android编辑文本更改焦点背景,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33492676/

10-12 03:33