创建游戏房
This commit is contained in:
7
common/src/main/res/drawable/bg_live_sud_game_back.xml
Normal file
7
common/src/main/res/drawable/bg_live_sud_game_back.xml
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<corners android:radius="90dp" />
|
||||
<gradient
|
||||
android:endColor="#83D2FF"
|
||||
android:startColor="#009FF8" />
|
||||
</shape>
|
||||
5
common/src/main/res/drawable/bg_live_sud_game_top.xml
Normal file
5
common/src/main/res/drawable/bg_live_sud_game_top.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<corners android:radius="4dp" />
|
||||
<solid android:color="#80000000" />
|
||||
</shape>
|
||||
5
common/src/main/res/drawable/bg_live_sud_list.xml
Normal file
5
common/src/main/res/drawable/bg_live_sud_list.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<corners android:topLeftRadius="12dp" android:topRightRadius="12dp" />
|
||||
<solid android:color="#201E1A" />
|
||||
</shape>
|
||||
5
common/src/main/res/drawable/bg_live_sud_list_btn.xml
Normal file
5
common/src/main/res/drawable/bg_live_sud_list_btn.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<corners android:radius="6dp" />
|
||||
<solid android:color="#313131" />
|
||||
</shape>
|
||||
8
common/src/main/res/drawable/bg_live_sud_list_input.xml
Normal file
8
common/src/main/res/drawable/bg_live_sud_list_input.xml
Normal file
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<corners android:radius="4dp" />
|
||||
<solid android:color="#484848" />
|
||||
<stroke
|
||||
android:width="0.5dp"
|
||||
android:color="#E4E4E4" />
|
||||
</shape>
|
||||
8
common/src/main/res/drawable/bg_live_sud_list_select.xml
Normal file
8
common/src/main/res/drawable/bg_live_sud_list_select.xml
Normal file
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<corners android:radius="6dp" />
|
||||
<stroke
|
||||
android:width="0.5dp"
|
||||
android:color="#5c5c5c" />
|
||||
<solid android:color="#313131" />
|
||||
</shape>
|
||||
@@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
|
||||
<item android:state_selected="false">
|
||||
<shape>
|
||||
<solid android:color="#313131" />
|
||||
</shape>
|
||||
|
||||
</item>
|
||||
<item android:state_selected="true">
|
||||
<shape>
|
||||
<solid android:color="#252525" />
|
||||
</shape>
|
||||
|
||||
</item>
|
||||
</selector>
|
||||
Reference in New Issue
Block a user