我一直在努力为我的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>
来设置正确的形状。
请查看附件以了解我要完成的任务。
谢谢!
答案 0 :(得分:1)
首先使用TextInputLayout
与EditText
一起使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
的更多详情