标签:android com http blog style class div img code java javascript
<EditText android:hint="我是EditText" android:layout_width="fill_parent" android:layout_height="wrap_content" android:inputType="phone" android:background="@drawable/shape" />
1 <?xml version="1.0" encoding="UTF-8"?> 2 <shape 3 xmlns:android="http://schemas.android.com/apk/res/android" 4 android:shape="rectangle"> 5 <!-- 填充的颜色 --> 6 <solid android:color="#FFFFFF" /> 7 <!-- 设置矩形的四个角为弧形 --> 8 <!-- android:radius 弧形的半径 --> 9 <corners android:radius="7dip" /> 10 </shape>
标签:android com http blog style class div img code java javascript
原文地址:http://www.cnblogs.com/cliffhuang/p/3696652.html