我正在开发一个 Android 应用程序。
为了使 UI 更具吸引力,我想缩小 EditText 文本并应用背景颜色和形状。
我还必须能够从 EditText 中删除该元素。
看看这个 谷歌加应用
将其用作 Xml 文件来四舍五入您的 EditText 并将颜色设置为您想要的任何颜色......
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
<solid android:color="#eeffffff" />
<corners android:bottomRightRadius="8dip"
android:bottomLeftRadius="8dip" android:topRightRadius="8dip"
android:topLeftRadius="8dip"/>
</shape>