当前位置: 代码迷 >> Android >> 【转】android shape指定那几个边有框子
  详细解决方案

【转】android shape指定那几个边有框子

热度:32   发布时间:2016-04-28 06:28:39.0
【转】android shape指定那几个边有边框
<?xml version="1.0" encoding="utf-8"?><layer-list xmlns:android="http://schemas.android.com/apk/res/android"><!-- This is the line -->    <item android:top="-1dp" android:right="-1dp" android:left="-1dp">      <shape>            <solid android:color="@android:color/transparent" />            <stroke android:width="1dp" android:color="#ffffff" />      </shape>    </item></layer-list>


http://stackoverflow.com/questions/2422120/open-sided-android-stroke
  相关解决方案