Blame view

res/drawable/bg_button_cricleshape.xml 666 Bytes
3c2353cd   杜方   1、畅游通核销app源码提交;
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  <shape xmlns:android="http://schemas.android.com/apk/res/android"
      android:shape="rectangle" >
  
      <!-- topLeftRadius、topRightRadius 为半圆角矩形上半部分的圆角半径,bottomLeftRadius、bottomRightRadius 为矩形下半部分的圆角半径,值为0表示直角 -->
      <corners
          android:bottomLeftRadius="10dp"
          android:bottomRightRadius="10dp"
          android:topLeftRadius="10dp"
          android:topRightRadius="10dp" />
  
      <stroke
          android:width="1dp"
          android:color="@color/bg_list_item_shape_color" />
  
      <solid android:color="@color/bg_list_item_shape_color" />
  
      <size android:height="1dp" />
  
  </shape>