android EditText控件显示边框:
默认主题样式和实际运行时的系统相关,为的是和系统主题一致,统一的风格。 所以, 并不完全和编写是的效果一致。 如果要保证各平台效果一致,需要自定义一些样式,如backgroud textColor等属性,
<?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" > <gradient android:angle="0.0" android:centerColor="#f2f2f2" android:endColor="#f2f2f2" android:startColor="#f2f2f2"/> <stroke android:width="1.0dip" android:color="#f2f2f2"/> <corners android:bottomLeftRadius="10.0dip" android:bottomRightRadius="10.0dip" android:topLeftRadius="10.0dip" android:topRightRadius="10.0dip" /> </shape>