android 自定义按钮的外边框

<?xml version="1.0" encoding="utf-8"?>

<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <corners android:radius="5dp"/>
    <!-- 外边框颜色以及边框大小(注意要指定边框的大小 否则默认为零) -->
    <stroke android:color="#000" android:width="1dp"/>
    <solid android:color="#77123456"/>
    <padding android:left="10dp" android:top="10dp"
             android:right="10dp" android:bottom="10dp" />
</shape>

 

posted @ 2014-01-26 11:58  无忧之路  阅读(876)  评论(0编辑  收藏  举报
无忧之路