输入编辑文本时,蓝线会出现在其下方。我希望它留在那里,即使不绑。这是因为我的背景很暗,你看不到那里有一个输入字段。如果有人对如何查看 EditText 输入有其他想法,请告知。谢谢
问问题
6254 次
3 回答
9
您要查找的可绘制对象已命名textfield_multiline_activated_holo_dark.9.png
,可以在...\android-sdk\platforms\android-**\data\res\drawable-*dpi
. 将它们全部复制到您的项目中,然后将以下内容添加到您EditText
的 xml 布局文件中:
android:background="@drawable/textfield_multiline_activated_holo_dark"
并且,如有必要,更改文本颜色,如下所示:
android:textColor="@android:color/white"
于 2013-06-12T14:32:03.383 回答
1
您必须像这样进行选择 xml 文件:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_window_focused="false" android:state_enabled="true" android:drawable="@drawable/your_drawable>
<item android:state_window_focused="false" android:state_enabled="false" android:drawable="@drawable/your_drawable>
<item android:state_enabled="true" android:state_focused="true" android:drawable="@drawable/your_drawable>
<item android:state_enabled="true" android:state_focused="true" android:drawable="@drawable/your_drawable>
<item android:state_enabled="true" android:drawable="@drawable/your_drawable>
<item android:state_focused="true" android:drawable="@drawable/your_drawable>
<item android:drawable="@drawable/your_drawable">
</selector>
然后制作一个styles.xml文件并插入:
<style name="EditTextLight" parent="android:style/Widget.EditText">
<item name="android:background">@drawable/edit_text_holo_light</item>
<item name="android:textColor">white</item>
</style>
然后像这样设置您的edittext的样式:
<EditText
style="@style/EditTextHololight" />
于 2013-06-12T14:24:36.277 回答
0
转到您的 styles.xml 并简单地输入以下内容
<style name="EditTextTheme" parent="Theme.AppCompat.Light">
<item name="colorControlNormal">@color/YourChoice </item>
</style>
然后在您的布局文件whatever.xml中,将其添加到您的根目录
<LinearLayout
...
android:theme="@style/EditTextTheme">
.
.
<EditText... />
</LinearLayout>
底部应该根据您设置的颜色而改变
于 2019-02-28T23:25:35.280 回答