我放了一个编辑文本,它的颜色是白色的。但在安卓4.0以上的设备中,它看起来是黑色的,直到棒棒糖。
我找了这个,得到了解决方案,应用背景色为白色。
但是我有另一个布局,编辑文本所属的布局是深蓝色的,所以如果我应用背景色作为白色,那么整个编辑文本在深蓝色的布局上看起来是白色的。
我现在能做什么?
布局:

 <RelativeLayout
    android:orientation="horizontal"
    android:layout_width="match_parent"
    android:layout_height="50dp"
    android:background="@drawable/purple_bg"
    android:layout_alignParentTop="true"
    android:layout_alignParentLeft="false"
    android:layout_alignParentStart="true"
    android:id="@+id/linearLayout"
    android:weightSum="1">

    <EditText
        android:layout_width="match_parent"
        android:layout_height="42dp"
        android:id="@+id/editTextOrderItem"
        android:layout_gravity="center_vertical"
        android:backgroundTint="#ffffff"
        android:drawableTint="#ffffff"
        android:hint="Type here..."
        android:textColorHint="#ffffff"
        android:paddingLeft="15dp"
        android:imeOptions="actionDone"
        android:textSize="12sp"
        android:layout_marginLeft="@dimen/activity_horizontal_margin"
        android:layout_centerVertical="true"
        android:textColor="#ffffff"
        android:layout_toLeftOf="@+id/imageViewSearch"
        android:layout_toStartOf="@+id/imageViewSearch"
        android:singleLine="true" />

    <ImageView
        android:layout_width="40dp"
        android:layout_height="40dp"
        android:id="@+id/imageViewSearch"
        android:backgroundTint="@android:color/white"
        android:layout_alignParentRight="true"
        android:layout_alignParentEnd="true"
        android:layout_gravity="center"
        android:src="@drawable/btn_search"
        android:layout_centerVertical="true"
        android:padding="10dp"
        android:layout_marginRight="06dp" />

</RelativeLayout>

颜色.xml
    <?xml version="1.0" encoding="utf-8"?>
<resources>
    <color name="colorPrimary">#ffffff</color>
    <color name="colorPrimaryDark">#eeeeee</color>
    <color name="colorAccent">#3e3e3e</color>
    <color name="black">#747474</color>
    <color name="drawerBacground">#e6f7fd</color>
    <color name="themetextcolor">#009688</color>
    <color name="darktextcolor">#000000</color>
    <color name="lighttextcolor">#ACABAC</color>
    <color name="activity_bg_color">#D9E7E4</color>
    <color name="activity_footer_color">#37b0a0</color>
    <color name="btn_text">#b3ffffff</color>
    <color name="seperator">#dedede</color>
    <color name="accent">#00B0FF</color>
</resources>

请帮忙,谢谢。
编辑:
我试图添加新的主题并将其放入manifest中的活动中,但没有帮助。
<resources>

<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
    <!-- Customize your theme here. -->
    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/black</item>
    <item name="colorAccent">@color/accent</item>
    <item name="android:typeface">monospace</item>
    <item name="android:textSize">17sp</item>
</style>
<style name="AppTheme2" parent="Theme.AppCompat.Light.NoActionBar">
    <!-- Customize your theme here. -->
    <item name="android:typeface">monospace</item>
    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
    <item name="colorAccent">@color/colorPrimary</item>
</style>
<style name="AppTheme1" parent="Theme.AppCompat.Light.NoActionBar">
    <!-- Customize your theme here. -->
    <item name="android:typeface">monospace</item>
    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
    <item name="colorAccent">@color/accent</item>
</style>

<style name="AppTheme.NoActionBar">
    <item name="windowActionBar">false</item>
    <item name="windowNoTitle">true</item>
</style>

<style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />

<style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />

显示:
     <activity android:name=".Activities.MainActivity"
        android:theme="@style/AppTheme2"
        />

最佳答案

创建一个drawable资源xml文件(您的要求只是有一个底部笔划)
将给定的drawable设置为editText的背景,然后可以添加所需的背景色+所需的底线和颜色
说明:
这是一个资源drawable
dashGap&dashWidth用于点线/虚线(如果不需要破折号,请删除它们)
android:top->您可以给不需要显示的views指定减号(这里您的要求是只显示底行,所以项目的顶行、右行和左行已经指定了-2dp)

<layer-list xmlns:android="http://schemas.android.com/apk/res/android">

    <item>
        <shape android:shape="rectangle" >
            <solid android:color="#FFF" />  <-- background color here
        </shape>
    </item>

    <item android:top="-2dp" android:right="-2dp" android:left="-2dp">
        <shape>
            <solid android:color="@android:color/transparent" />
            <stroke
                android:dashGap="10px"
                android:dashWidth="10px"
                android:width="1dp"
                android:color="#ababb2"  <-- bottom line color here />
        </shape>
    </item>

</layer-list>

关于java - 编辑文字底线在android 4.1中看起来是黑色的,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41217429/

10-08 23:56