下划线编辑文字

时间:2017-03-05 09:56:03

标签: android android-edittext

如何为EditText创建永久下划线,具有聚焦后的颜色变化能力? 我还没有在另一个主题中找到答案。 我想实现这样的目标: enter image description here

1 个答案:

答案 0 :(得分:0)

您可以在<input value={value || ''}/> 这样的EditText中使用自定义样式 -

style.xml

<!-- Edit text --> <style name="editTextStyle" parent="Theme.AppCompat.Light.NoActionBar"> <!-- Customize your theme here. --> <item name="android:textSize">@dimen/auth_text_paragraph_little</item> <item name="android:layout_gravity">left</item> <item name="android:focusable">true</item> <item name="colorControlNormal">@color/editUnderLine</item> <item name="colorControlActivated">@color/colorAccent</item> <item name="colorControlHighlight">@color/colorAccent</item> <item name="android:textColorHint">@color/hint</item> </style> 是您要在@color/editUnderLine文件中使用的颜色名称,如color.xml文件和string.xml文件

并在XML布局中使用此自定义样式 -

dimen.xml