gpt4 book ai didi

android编辑文本更改焦点背景

转载 作者:行者123 更新时间:2023-12-01 09:20:41 25 4
gpt4 key购买 nike

我在我的应用程序中使用了编辑文本,我想在编辑文本聚焦时更改背景。我写了一些代码,但我遇到了一个问题。我需要在编辑文本中单击两次以显示键盘。

这是我的代码:

  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>

选择器_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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com