android 画圆角矩形,且显示边界线条:
在drawable文件夹下,创建roundedRectangle.xml文件代码如下:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#ffffff" />
<corners android:radius="5dp" />
<padding
android:left="5dp"
android:top="5dp"
android:right="5dp"
android:bottom="5dp" />
<!-- 描边 -->
<stroke
android:width="1dp"
android:color="#d1d1d1" />
</shape>
在要用到的圆角矩形的xml文件中,例如ListView的item中,将layout的background设置为:android:background="@drawable/roundedRectangle.xml" 即可。
在layout中画线条:
<View
android:layout_height="1px"
android:layout_marginLeft="8dp"
android:background="#e5e5e5"
android:layout_width="fill_parent"
>
</View>
效果如图所示: