光标下划线

时间:2017-03-09 09:25:50

标签: android android-layout android-edittext

我使用自定义样式实现了自定义edittext:

<android.support.design.widget.TextInputLayout

            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:hint="Username"
            android:textColorHint="@color/white"
            app:hintAnimationEnabled="true"
            app:hintTextAppearance="@style/TExtAppearance"
            >

            <com.app.farmtrace.fieldagent.CustomView.EditText_SemiBold
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:textColor="@color/colorAccent"
                android:theme="@style/EditTextStyle"
                android:id="@+id/username"
                android:maxLines="1"
                android:maxLength="50"
                android:inputType="textEmailAddress|textNoSuggestions"
                android:nextFocusDown="@+id/password"
                />

        </android.support.design.widget.TextInputLayout>

这就是屏幕:

enter image description here

只有光标,现在当我再次选择光标时,我得到了这个:

enter image description here

我不希望光标下方有黄色下划线。

这是在带有android 7.0的Moto g4中测试的。

<style name="TExtAppearance">
    <item name="android:textColor">@color/white</item>
    <item name="android:textColorHighlight">@color/white</item>
    <item name="android:textColorHint">@color/white</item>
    <item name="android:textColorLink">@color/white</item>
    <item name="android:textSize">16sp</item>
    </style>



<style name="EditTextStyle" parent="Widget.AppCompat.EditText">
        <item name="colorControlNormal">@color/white</item>
        <item name="colorControlActivated">@color/colorAccent</item>
        <!--<item name="colorControlHighlight">@color/colorAccent</item>-->
    </style>

修改 如果我的错误和文本看不到错误,也会出现错误下划线:

enter image description here

3 个答案:

答案 0 :(得分:2)

我遇到了同样的问题。通过从我的Widget.AppCompat.EditText'自定义样式中删除TextInputEditText父样式,我能够删除光标下划线。换句话说,我改变了我的TextInputEditText s风格:

<style name="MyEditTextStyle" parent="Widget.AppCompat.EditText">
        ...
</style>

到此:

<style name="MyEditTextStyle">
        ...
</style>

引用样式的TextInputEditText之一的示例:

<android.support.design.widget.TextInputEditText
    android:id="@+id/edit_username"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:theme="@style/MyEditTextStyle"/>

答案 1 :(得分:0)

尝试设置inputType =&#34; textNoSuggestions&#34;您在android中的编辑文本

     android:inputType="textNoSuggestions"

答案 2 :(得分:0)

尝试在drawable

的帮助下设置背景

制作一个新的可绘制文件,例如。 et_back.xml并制作背景/形状

然后在编辑文本中将其用作背景......

例如。让它成为你的drawable.xml

<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<stroke
    android:width="2dp"
    android:color="#000000" />
</shape>

,您的编辑文字为:

<EditText
    //other attribute/properties
    android:background="@drawable/drawable_name"        
    />