增加中控页面
This commit is contained in:
@@ -3,7 +3,6 @@
|
||||
<corners
|
||||
android:bottomLeftRadius="8dp"
|
||||
android:bottomRightRadius="8dp"
|
||||
android:radius="20dp"
|
||||
android:topLeftRadius="8dp"
|
||||
android:topRightRadius="0dp" />
|
||||
<gradient
|
||||
|
||||
13
app/src/main/res/drawable/shape_console_search_bg.xml
Normal file
13
app/src/main/res/drawable/shape_console_search_bg.xml
Normal file
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<corners
|
||||
android:bottomLeftRadius="8dp"
|
||||
android:bottomRightRadius="8dp"
|
||||
android:topLeftRadius="8dp"
|
||||
android:topRightRadius="8dp" />
|
||||
<gradient
|
||||
android:angle="315"
|
||||
android:endColor="#C228D7"
|
||||
android:startColor="#FF9A27"
|
||||
android:type="linear" />
|
||||
</shape>
|
||||
14
app/src/main/res/drawable/shape_console_track_bg.xml
Normal file
14
app/src/main/res/drawable/shape_console_track_bg.xml
Normal file
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<corners
|
||||
android:bottomLeftRadius="8dp"
|
||||
android:bottomRightRadius="8dp"
|
||||
android:topLeftRadius="8dp"
|
||||
android:topRightRadius="8dp" />
|
||||
<gradient
|
||||
android:angle="135"
|
||||
android:centerColor="#8E6CFF"
|
||||
android:endColor="#3696FF"
|
||||
android:startColor="#AC40FF"
|
||||
android:type="linear" />
|
||||
</shape>
|
||||
7
app/src/main/res/drawable/shape_oval_black_bg.xml
Normal file
7
app/src/main/res/drawable/shape_oval_black_bg.xml
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="oval">
|
||||
|
||||
<solid android:color="@color/black" />
|
||||
|
||||
</shape>
|
||||
7
app/src/main/res/drawable/shape_oval_gray_bg.xml
Normal file
7
app/src/main/res/drawable/shape_oval_gray_bg.xml
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="oval">
|
||||
|
||||
<solid android:color="@color/gray" />
|
||||
|
||||
</shape>
|
||||
7
app/src/main/res/drawable/shape_oval_gray_hex_bg.xml
Normal file
7
app/src/main/res/drawable/shape_oval_gray_hex_bg.xml
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="oval">
|
||||
|
||||
<solid android:color="#90808080" />
|
||||
|
||||
</shape>
|
||||
13
app/src/main/res/drawable/shape_rect_black_8dp_bg.xml
Normal file
13
app/src/main/res/drawable/shape_rect_black_8dp_bg.xml
Normal file
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
|
||||
<corners
|
||||
android:bottomLeftRadius="4dp"
|
||||
android:bottomRightRadius="4dp"
|
||||
android:topLeftRadius="4dp"
|
||||
android:topRightRadius="4dp" />
|
||||
|
||||
<solid android:color="#C42E303B" />
|
||||
|
||||
</shape>
|
||||
Reference in New Issue
Block a user