我正在开发一个Android应用程序。
为了使UI更具吸引力,我希望缩小EditText文本并应用背景颜色和形状。
我还必须能够从EditText中删除该元素。
看看这个 Google plus App
答案 0 :(得分:1)
使用它作为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>