update
This commit is contained in:
9
OneToOne/src/main/res/drawable/background_dbdbdb.xml
Normal file
9
OneToOne/src/main/res/drawable/background_dbdbdb.xml
Normal file
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item>
|
||||
<shape android:shape="rectangle">
|
||||
<corners android:radius="20dp" />
|
||||
<solid android:color="#dbdbdb" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
21
OneToOne/src/main/res/drawable/background_white_up.xml
Normal file
21
OneToOne/src/main/res/drawable/background_white_up.xml
Normal file
@@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<!-- rectangle表示为矩形 -->
|
||||
|
||||
<!-- 填充的颜色 -->
|
||||
<solid android:color="@color/white" />
|
||||
|
||||
<!-- 边框的颜色和粗细 -->
|
||||
<stroke
|
||||
android:width="0dp"
|
||||
android:color="@color/white" />
|
||||
|
||||
<!-- android:radius 圆角的半径 -->
|
||||
<corners
|
||||
android:bottomLeftRadius="0dp"
|
||||
android:bottomRightRadius="0dp"
|
||||
android:topLeftRadius="25dp"
|
||||
android:topRightRadius="25dp" />
|
||||
|
||||
</shape>
|
||||
9
OneToOne/src/main/res/drawable/bg_home_rank_day.xml
Normal file
9
OneToOne/src/main/res/drawable/bg_home_rank_day.xml
Normal file
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item>
|
||||
<shape android:shape="rectangle">
|
||||
<corners android:radius="25dp" />
|
||||
<solid android:color="#FFFFFF" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:width="58dp" android:height="24dp">
|
||||
<shape android:shape="rectangle">
|
||||
<gradient android:type="linear" android:useLevel="true" android:startColor="#ff9b61f0" android:endColor="#ffbc6ef0" android:angle="45" />
|
||||
<corners android:topLeftRadius="12dp" android:topRightRadius="12dp" android:bottomLeftRadius="12dp" android:bottomRightRadius="12dp" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
Reference in New Issue
Block a user