正在发生的事情:当我点击inputName
行时
我要尝试的操作:无论是否存在焦点,都要显示该行
代码:
<android.support.design.widget.TextInputEditText
android:id="@+id/inputName"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="16sp"
android:singleLine="true"
android:textColor="@color/warm_grey"
android:hint="Enter Mobile Number"
android:layout_weight="1"/>
图片:
我只想针对焦点状态和未焦点状态使用两种颜色
答案 0 :(得分:2)
您需要为此使用StateListDrawable
示例代码
布局
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<com.google.android.material.textfield.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Hint Text">
<com.google.android.material.textfield.TextInputEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/edt_bg"
android:visibility="visible" />
</com.google.android.material.textfield.TextInputLayout>
<com.google.android.material.textfield.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Hint Text">
<com.google.android.material.textfield.TextInputEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/edt_bg"
android:visibility="visible" />
</com.google.android.material.textfield.TextInputLayout>
</LinearLayout>
@ drawable / edt_bg
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/edt_bg_selected" android:state_focused="true" />
<item android:drawable="@drawable/edt_bg_normal" android:state_focused="false" />
</selector>
@ drawable / edt_bg_selected
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:bottom="1dp"
android:left="-3dp"
android:right="-3dp"
android:top="-3dp">
<shape android:shape="rectangle">
<stroke
android:width="2dp"
android:color="#0fe4e4" />
<solid android:color="#00ffffff" />
</shape>
</item>
</layer-list>
@ drawable / edt_bg_normal
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:bottom="1dp"
android:left="-3dp"
android:right="-3dp"
android:top="-3dp">
<shape android:shape="rectangle">
<stroke
android:width="2dp"
android:color="#000" />
<solid android:color="#00ffffff" />
</shape>
</item>
</layer-list>
输出
注意
根据您的要求使用 android:width="2dp"
和 android:color="#000"
,在TextInputEditText
中设置线条的粗细宽度和颜色>
答案 1 :(得分:0)
这个小功能可以帮到你
fun hintRemover(textInputLayout: TextInputLayout, textInputEditText: TextInputEditText, text: String) {
textInputEditText.setOnFocusChangeListener { _, hasFocus ->
if (hasFocus) {
textInputLayout.hint = null
}
else {
textInputLayout.hint = text
}
}
}
答案 2 :(得分:-1)
尝试在您的AppTheme
中使用此属性,或仅创建AnotherTheme并在您的EditText中使用。
<item name="colorControlNormal">Color code for default</item>
<item name="colorControlActivated">Color code for focused one</item>
<item name="colorControlHighlight">Color code for focused one</item>
可能重复 Changing EditText bottom line color with appcompat v7
注意:-如果使用AppCompat v22
支持库,则可以在EditText中指定主题,例如:android:theme="@style/Theme.App.Base
。这样可以确保样式也不会影响您不想更改的布局中的其他视图。