我希望EditText下的行保持不变

时间:2013-06-12 13:49:50

标签: android colors background android-edittext

在输入编辑文本时,蓝线出现在其下方。我希望它留在那里 即使没有搭便车。这是因为我有一个黑暗的背景,你不能看到那里有一个输入字段。如果有人对如何查看EditText输入有其他想法请指教。 感谢

3 个答案:

答案 0 :(得分:9)

您要查找的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"

答案 1 :(得分: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
    style="@style/EditTextHololight" />

答案 2 :(得分:0)

转到您的styles.xml并简单地输入以下内容

<style name="EditTextTheme" parent="Theme.AppCompat.Light">
    <item name="colorControlNormal">@color/YourChoice </item>
</style>

然后在您的布局文件what.xml中,将其添加到您的根目录

<LinearLayout
   ...
   android:theme="@style/EditTextTheme">
   .
   .
   <EditText... />
</LinearLayout>

底部应该根据您设置的颜色而改变