EditText背景的XML

时间:2015-06-30 08:14:16

标签: android styles shape

我一直在努力为我的EditText设置样式,就像屏幕截图中的内容一样。关于如何做正确的任何提示。

我希望风格做的事情。

- The bottom margin / line should stay at the bottom regardless of the 
  height of the EditText
- The height of the EditText should not be hardcoded
- How to place the arrow to the right of the EditText

我调查<layer-list>来设置正确的形状。

请查看附件以了解我要完成的任务。

enter image description here

谢谢!

1 个答案:

答案 0 :(得分:1)

首先使用TextInputLayoutEditText一起使android:drawableRight

EditText的下划线<android.support.design.widget.TextInputLayout android:id="@+id/til_password" android:layout_width="match_parent" android:layout_height="wrap_content"> <EditText android:id="@+id/edt_password" android:layout_width="match_parent" android:layout_height="wrap_content" android:hint="Password" android:drawableRight="@drawable/your_drawable_name" android:textColor="@color/black"/> </android.support.design.widget.TextInputLayout> 像这样

VB.net

有关design-library

的更多详情