Blame view

res/drawable/btn_shape.xml 631 Bytes
3c2353cd   杜方   1、畅游通核销app源码提交;
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  <?xml version="1.0" encoding="utf-8"?>
  <!-- 空心圆角矩形 -->
  <shape xmlns:android="http://schemas.android.com/apk/res/android"
      android:shape="rectangle" >
  
      <corners android:radius="8dp" />
      <!-- 圆角半径 -->
  
      <stroke
          android:width="2dp"
          android:color="@color/retryBgColor" />
      <!-- 矩形的边线 -->
  
     <!--  <size
          android:height="50dp"
          android:width="400dp" /> -->
      <!-- 矩形的宽高 -->
  
      <!-- <gradient
          android:endColor="#fff"
          android:startColor="#fff" /> -->
      <!-- 矩形的内部颜色,这里设置成白色,即空心 -->
  
  </shape>