Gir*_*iri 4 android border-color android-edittext
我用过这个.
<color name="edt_pressed">#99CBFF</color>
<color name="edt_focused">#CEF7F6</color>
<color name="edt_default">#000000</color>
Run Code Online (Sandbox Code Playgroud)
gradient_edt_focused
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<stroke android:width="1dip" android:color="@color/edt_focused" />
</shape>
Run Code Online (Sandbox Code Playgroud)
edt_border.xml
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:state_pressed="true" android:drawable="@layout/gradient_edt_pressed"/>
<item android:state_focused="true" android:drawable="@layout/gradient_edt_focused"/>
<item android:drawable="@layout/gradient_edt_default"/>
</selector>
Run Code Online (Sandbox Code Playgroud)
activity_main.xml中
<EditText
android:id="@+id/uname"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:singleLine="true"
android:background="@layout/textview_border"/>
Run Code Online (Sandbox Code Playgroud)
现在边框工作正常,但在键入文本时,背景颜色为黑色.
问题是在onfocus时将默认项目的颜色作为背景,因为我没有为每个项目提供任何纯色.所以现在我在"gradient_edt_focused"中添加了这个.
<solid android:color="#00000000" />
Run Code Online (Sandbox Code Playgroud)
现在它正在运作.
| 归档时间: |
|
| 查看次数: |
36505 次 |
| 最近记录: |