我正在用安卓开发应用程序。我确实为我的应用程序设计了自定义编辑文本,请参阅 image.1 for image.1 我使用了 edittext 样式,但我想要如下 image.2 的 edittext 样式。有没有人有解决方案。
图像.1
image.1 编辑文本样式
android:background="@drawable/edittext_shape"
以下是edittext.xml
<?xml version="1.0" encoding="utf-8"?>
<item
android:bottom="1dp"
android:left="-4dp"
android:right="-4dp"
android:top="-4dp">
<shape>
<solid android:color="@android:color/transparent" />
<stroke
android:width="2dp"
android:color="@color/marooncolor" />
</shape>
</item>
以下是 image.2 这是我想要的