在输入编辑文本时,蓝线出现在其下方。即使没有搭便车,我希望它留在那里。这是因为我有一个黑暗的背景,你不能看到那里有一个输入字段。如果有人对如何查看EditText输入有其他想法请指教。谢谢
你正在寻找的drawable名为textfield_multiline_activated_holo_dark.9.png
,可以在...\android-sdk\platforms\android-**\data\res\drawable-*dpi
找到。将所有这些复制到项目中,然后将以下内容添加到xml布局文件中的EditText
中:
android:background="@drawable/textfield_multiline_activated_holo_dark"
并且,如有必要,可以像这样更改文本颜色:
android:textColor="@android:color/white"
您将不得不像这样选择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" />
转到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>
底部应该根据您设置的颜色而改变