Merge branch 'master' of gitlab.navinfo.com:CollectVehicle/OneMapQS
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
|
||||
<solid android:color="@color/blue" />
|
||||
<solid android:color="@color/btn_bg_blue" />
|
||||
<corners
|
||||
android:bottomLeftRadius="5dp"
|
||||
android:bottomRightRadius="5dp"
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
|
||||
<solid android:color="@color/high_item_color" />
|
||||
<corners
|
||||
android:bottomLeftRadius="5dp"
|
||||
android:bottomRightRadius="5dp"
|
||||
android:topLeftRadius="5dp"
|
||||
android:topRightRadius="5dp" />
|
||||
<padding
|
||||
android:bottom="1dp"
|
||||
android:left="1dp"
|
||||
android:right="1dp"
|
||||
android:top="1dp"/>
|
||||
</shape>
|
||||
14
app/src/main/res/drawable/drawable_bg_white_bg_4_radius.xml
Normal file
14
app/src/main/res/drawable/drawable_bg_white_bg_4_radius.xml
Normal file
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
|
||||
<solid android:color="@color/white" />
|
||||
<corners
|
||||
android:bottomLeftRadius="5dp"
|
||||
android:bottomRightRadius="5dp"
|
||||
android:topLeftRadius="5dp"
|
||||
android:topRightRadius="5dp" />
|
||||
<padding
|
||||
android:bottom="1dp"
|
||||
android:left="1dp"
|
||||
android:right="1dp"
|
||||
android:top="1dp"/>
|
||||
</shape>
|
||||
BIN
app/src/main/res/drawable/icon_item_high_bg.9.png
Normal file
BIN
app/src/main/res/drawable/icon_item_high_bg.9.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 840 B |
6
app/src/main/res/drawable/ripple_btn_video_normal.xml
Normal file
6
app/src/main/res/drawable/ripple_btn_video_normal.xml
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<ripple
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:color="@color/ripple_color">
|
||||
<item android:drawable="@drawable/shape_btn_video_normal"/>
|
||||
</ripple>
|
||||
8
app/src/main/res/drawable/selector_bg_video_button.xml
Normal file
8
app/src/main/res/drawable/selector_bg_video_button.xml
Normal file
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_enabled="false" android:drawable="@drawable/ripple_btn_video_normal"></item>
|
||||
<item android:state_checked="true" android:drawable="@drawable/ripple_btn_video_normal"/>
|
||||
<item android:state_pressed="true" android:drawable="@drawable/ripple_btn_video_normal"/>
|
||||
<item android:state_selected="true" android:drawable="@drawable/ripple_btn_video_normal"></item>
|
||||
<item android:drawable="@drawable/ripple_btn_video_normal"/>
|
||||
</selector>
|
||||
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_enabled="false" android:drawable="@drawable/shade_btn_gray_bg_4_radius_hd"></item>
|
||||
<item android:state_checked="true" android:drawable="@drawable/drawable_bg_blue_bg_4_radius"/>
|
||||
<item android:state_pressed="true" android:drawable="@drawable/drawable_bg_blue_bg_4_radius"/>
|
||||
<item android:state_selected="true" android:drawable="@drawable/drawable_bg_blue_bg_4_radius"></item>
|
||||
<item android:drawable="@drawable/drawable_bg_white_bg_4_radius"/>
|
||||
|
||||
</selector>
|
||||
15
app/src/main/res/drawable/shape_btn_video_normal.xml
Normal file
15
app/src/main/res/drawable/shape_btn_video_normal.xml
Normal file
@@ -0,0 +1,15 @@
|
||||
<?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:radius="20dp"
|
||||
android:topLeftRadius="8dp"
|
||||
android:topRightRadius="0dp" />
|
||||
<gradient
|
||||
android:centerX="0.5"
|
||||
android:centerY="0.5"
|
||||
android:endColor="#ff6d0bbd"
|
||||
android:startColor="#ff445ff5"
|
||||
android:type="linear" />
|
||||
</shape>
|
||||
13
app/src/main/res/drawable/shape_btn_video_press.xml
Normal file
13
app/src/main/res/drawable/shape_btn_video_press.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">
|
||||
<solid android:color="@color/colorPrimarySurface"></solid>
|
||||
<stroke android:color="@color/colorSecondary"></stroke>
|
||||
<corners
|
||||
android:bottomLeftRadius="8dp"
|
||||
android:bottomRightRadius="8dp"
|
||||
android:radius="20dp"
|
||||
android:topLeftRadius="8dp"
|
||||
android:topRightRadius="0dp" />
|
||||
</shape>
|
||||
Reference in New Issue
Block a user