1
This commit is contained in:
11
live/src/main/res/anim/anim_loading_gift.xml
Normal file
11
live/src/main/res/anim/anim_loading_gift.xml
Normal file
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<rotate
|
||||
android:duration="1500"
|
||||
android:fromDegrees="0"
|
||||
android:repeatCount="-1"
|
||||
android:toDegrees="359"
|
||||
android:pivotX="50%"
|
||||
android:pivotY="50%"
|
||||
/>
|
||||
</set>
|
||||
7
live/src/main/res/anim/anim_marquee_in.xml
Normal file
7
live/src/main/res/anim/anim_marquee_in.xml
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<translate
|
||||
android:duration="1500"
|
||||
android:fromYDelta="100%p"
|
||||
android:toYDelta="0" />
|
||||
</set>
|
||||
7
live/src/main/res/anim/anim_marquee_out.xml
Normal file
7
live/src/main/res/anim/anim_marquee_out.xml
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<translate
|
||||
android:duration="1500"
|
||||
android:fromYDelta="0"
|
||||
android:toYDelta="-100%p" />;
|
||||
</set>
|
||||
16
live/src/main/res/anim/live_chat_msg_in.xml
Normal file
16
live/src/main/res/anim/live_chat_msg_in.xml
Normal file
@@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<translate
|
||||
android:interpolator="@android:anim/decelerate_interpolator"
|
||||
android:duration="500"
|
||||
android:fromAlpha="0.1"
|
||||
android:toAlpha="1"
|
||||
android:fromYDelta="2.5%p"
|
||||
android:toYDelta="0" />
|
||||
<alpha
|
||||
android:interpolator="@android:anim/decelerate_interpolator"
|
||||
android:duration="500"
|
||||
android:fromAlpha="0.1"
|
||||
android:toAlpha="1"
|
||||
/>
|
||||
</set>
|
||||
11
live/src/main/res/anim/vice_screen_come_out.xml
Normal file
11
live/src/main/res/anim/vice_screen_come_out.xml
Normal file
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<alpha
|
||||
android:duration="1000"
|
||||
android:fromXDelta="0%p"
|
||||
android:toXDelta="-100%p" />
|
||||
<translate
|
||||
android:duration="1000"
|
||||
android:fromXDelta="0%p"
|
||||
android:toXDelta="-100%p" />
|
||||
</set>
|
||||
12
live/src/main/res/anim/view_live_anchor_say_text_in.xml
Normal file
12
live/src/main/res/anim/view_live_anchor_say_text_in.xml
Normal file
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<translate
|
||||
android:duration="300"
|
||||
android:fromXDelta="-100%"
|
||||
android:toXDelta="0" />
|
||||
<alpha
|
||||
android:duration="300"
|
||||
android:fromAlpha="0"
|
||||
android:toAlpha="1" />
|
||||
</set>
|
||||
12
live/src/main/res/anim/view_live_anchor_say_text_out.xml
Normal file
12
live/src/main/res/anim/view_live_anchor_say_text_out.xml
Normal file
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<translate
|
||||
android:duration="300"
|
||||
android:fromXDelta="0"
|
||||
android:toXDelta="-100%" />
|
||||
<alpha
|
||||
android:duration="300"
|
||||
android:fromAlpha="1"
|
||||
android:toAlpha="0.2" />
|
||||
</set>
|
||||
12
live/src/main/res/anim/view_live_anchor_vote_in.xml
Normal file
12
live/src/main/res/anim/view_live_anchor_vote_in.xml
Normal file
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<translate
|
||||
android:duration="300"
|
||||
android:fromXDelta="100%"
|
||||
android:toXDelta="0" />
|
||||
<alpha
|
||||
android:duration="300"
|
||||
android:fromAlpha="0"
|
||||
android:toAlpha="1" />
|
||||
</set>
|
||||
12
live/src/main/res/anim/view_live_anchor_vote_out.xml
Normal file
12
live/src/main/res/anim/view_live_anchor_vote_out.xml
Normal file
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<translate
|
||||
android:duration="300"
|
||||
android:fromXDelta="0"
|
||||
android:toXDelta="100%" />
|
||||
<alpha
|
||||
android:duration="300"
|
||||
android:fromAlpha="1"
|
||||
android:toAlpha="0.2" />
|
||||
</set>
|
||||
18
live/src/main/res/anim/view_room_msg_in.xml
Normal file
18
live/src/main/res/anim/view_room_msg_in.xml
Normal file
@@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<scale
|
||||
android:duration="300"
|
||||
android:fromXScale="0.3"
|
||||
android:fromYScale="0.3"
|
||||
android:interpolator="@android:anim/accelerate_interpolator"
|
||||
android:pivotX="50%"
|
||||
android:pivotY="50%"
|
||||
android:toXScale="1.0"
|
||||
android:toYScale="1.0" />
|
||||
<alpha
|
||||
android:duration="200"
|
||||
android:fromAlpha="0.0"
|
||||
android:toAlpha="1.0"
|
||||
/>
|
||||
</set>
|
||||
|
||||
18
live/src/main/res/anim/view_room_msg_out.xml
Normal file
18
live/src/main/res/anim/view_room_msg_out.xml
Normal file
@@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<scale
|
||||
android:duration="300"
|
||||
android:fromXScale="1.0"
|
||||
android:fromYScale="1.0"
|
||||
android:interpolator="@android:anim/accelerate_interpolator"
|
||||
android:pivotX="50%"
|
||||
android:pivotY="50%"
|
||||
android:toXScale="0.3"
|
||||
android:toYScale="0.3" />
|
||||
<alpha
|
||||
android:duration="200"
|
||||
android:fromAlpha="1.0"
|
||||
android:toAlpha="0.0"
|
||||
/>
|
||||
</set>
|
||||
|
||||
9
live/src/main/res/background_fff.xml
Normal file
9
live/src/main/res/background_fff.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="15dp" />
|
||||
<solid android:color="#ffffff" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
5
live/src/main/res/color/fg_btn_buy_guard.xml
Normal file
5
live/src/main/res/color/fg_btn_buy_guard.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:color="@color/white" android:state_checked="true"/>
|
||||
<item android:color="#99ffffff" android:state_checked="false"/>
|
||||
</selector>
|
||||
5
live/src/main/res/color/fg_btn_gift_send.xml
Normal file
5
live/src/main/res/color/fg_btn_gift_send.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:color="@color/white" android:state_enabled="true"/>
|
||||
<item android:color="@color/gray1" android:state_enabled="false"/>
|
||||
</selector>
|
||||
5
live/src/main/res/color/fg_btn_live_pk.xml
Normal file
5
live/src/main/res/color/fg_btn_live_pk.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:color="@color/global" android:state_enabled="true"/>
|
||||
<item android:color="@color/gray3" android:state_enabled="false"/>
|
||||
</selector>
|
||||
52
live/src/main/res/drawable/animation_pk_line.xml
Normal file
52
live/src/main/res/drawable/animation_pk_line.xml
Normal file
@@ -0,0 +1,52 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<animation-list xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:oneshot="false">
|
||||
<item android:drawable="@drawable/light_000" android:duration="50"/>
|
||||
<item android:drawable="@drawable/light_001" android:duration="50"/>
|
||||
<item android:drawable="@drawable/light_002" android:duration="50"/>
|
||||
<item android:drawable="@drawable/light_003" android:duration="50"/>
|
||||
<item android:drawable="@drawable/light_004" android:duration="50"/>
|
||||
<item android:drawable="@drawable/light_005" android:duration="50"/>
|
||||
<item android:drawable="@drawable/light_006" android:duration="50"/>
|
||||
<item android:drawable="@drawable/light_007" android:duration="50"/>
|
||||
<item android:drawable="@drawable/light_008" android:duration="50"/>
|
||||
<item android:drawable="@drawable/light_009" android:duration="50"/>
|
||||
<item android:drawable="@drawable/light_010" android:duration="50"/>
|
||||
<item android:drawable="@drawable/light_011" android:duration="50"/>
|
||||
<item android:drawable="@drawable/light_012" android:duration="50"/>
|
||||
<item android:drawable="@drawable/light_013" android:duration="50"/>
|
||||
<item android:drawable="@drawable/light_014" android:duration="50"/>
|
||||
<item android:drawable="@drawable/light_015" android:duration="50"/>
|
||||
<item android:drawable="@drawable/light_016" android:duration="50"/>
|
||||
<item android:drawable="@drawable/light_017" android:duration="50"/>
|
||||
<item android:drawable="@drawable/light_018" android:duration="50"/>
|
||||
<item android:drawable="@drawable/light_019" android:duration="50"/>
|
||||
<item android:drawable="@drawable/light_020" android:duration="50"/>
|
||||
<item android:drawable="@drawable/light_021" android:duration="50"/>
|
||||
<item android:drawable="@drawable/light_022" android:duration="50"/>
|
||||
<item android:drawable="@drawable/light_023" android:duration="50"/>
|
||||
<item android:drawable="@drawable/light_024" android:duration="50"/>
|
||||
<item android:drawable="@drawable/light_025" android:duration="50"/>
|
||||
<item android:drawable="@drawable/light_026" android:duration="50"/>
|
||||
<item android:drawable="@drawable/light_027" android:duration="50"/>
|
||||
<item android:drawable="@drawable/light_028" android:duration="50"/>
|
||||
<item android:drawable="@drawable/light_029" android:duration="50"/>
|
||||
<item android:drawable="@drawable/light_030" android:duration="50"/>
|
||||
<item android:drawable="@drawable/light_031" android:duration="50"/>
|
||||
<item android:drawable="@drawable/light_032" android:duration="50"/>
|
||||
<item android:drawable="@drawable/light_033" android:duration="50"/>
|
||||
<item android:drawable="@drawable/light_034" android:duration="50"/>
|
||||
<item android:drawable="@drawable/light_035" android:duration="50"/>
|
||||
<item android:drawable="@drawable/light_036" android:duration="50"/>
|
||||
<item android:drawable="@drawable/light_037" android:duration="50"/>
|
||||
<item android:drawable="@drawable/light_038" android:duration="50"/>
|
||||
<item android:drawable="@drawable/light_039" android:duration="50"/>
|
||||
<item android:drawable="@drawable/light_040" android:duration="50"/>
|
||||
<item android:drawable="@drawable/light_041" android:duration="50"/>
|
||||
<item android:drawable="@drawable/light_042" android:duration="50"/>
|
||||
<item android:drawable="@drawable/light_043" android:duration="50"/>
|
||||
<item android:drawable="@drawable/light_044" android:duration="50"/>
|
||||
<item android:drawable="@drawable/light_045" android:duration="50"/>
|
||||
<item android:drawable="@drawable/light_046" android:duration="50"/>
|
||||
<item android:drawable="@drawable/light_047" android:duration="50"/>
|
||||
</animation-list>
|
||||
9
live/src/main/res/drawable/background_00a0e9.xml
Normal file
9
live/src/main/res/drawable/background_00a0e9.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="30dp" />
|
||||
<solid android:color="#00A0E9" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
9
live/src/main/res/drawable/background_0fdab8.xml
Normal file
9
live/src/main/res/drawable/background_0fdab8.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="30dp" />
|
||||
<solid android:color="#0FDAB8" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
9
live/src/main/res/drawable/background_100.xml
Normal file
9
live/src/main/res/drawable/background_100.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="12dp" />
|
||||
<solid android:color="#36FF7C33" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
9
live/src/main/res/drawable/background_151515.xml
Normal file
9
live/src/main/res/drawable/background_151515.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="8dp" />
|
||||
<solid android:color="#1A1A1A" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
9
live/src/main/res/drawable/background_17090d.xml
Normal file
9
live/src/main/res/drawable/background_17090d.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="30dp" />
|
||||
<solid android:color="#17090D" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
9
live/src/main/res/drawable/background_292929.xml
Normal file
9
live/src/main/res/drawable/background_292929.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="10dp" />
|
||||
<solid android:color="#292929" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
9
live/src/main/res/drawable/background_30.xml
Normal file
9
live/src/main/res/drawable/background_30.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="12dp" />
|
||||
<solid android:color="#107733FF" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
9
live/src/main/res/drawable/background_33ffffff.xml
Normal file
9
live/src/main/res/drawable/background_33ffffff.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="#33FFFFFF" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
9
live/src/main/res/drawable/background_50.xml
Normal file
9
live/src/main/res/drawable/background_50.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="12dp" />
|
||||
<solid android:color="#13A533FF" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
9
live/src/main/res/drawable/background_595959.xml
Normal file
9
live/src/main/res/drawable/background_595959.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="#595959" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
9
live/src/main/res/drawable/background_60.xml
Normal file
9
live/src/main/res/drawable/background_60.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="12dp" />
|
||||
<solid android:color="#16FFA133" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
9
live/src/main/res/drawable/background_6cbe53.xml
Normal file
9
live/src/main/res/drawable/background_6cbe53.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="#6CBE53" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
9
live/src/main/res/drawable/background_7792d0.xml
Normal file
9
live/src/main/res/drawable/background_7792d0.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="#337792D0" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
9
live/src/main/res/drawable/background_80.xml
Normal file
9
live/src/main/res/drawable/background_80.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="12dp" />
|
||||
<solid android:color="#15F98C4F" />
|
||||
</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>
|
||||
<shape android:shape="rectangle">
|
||||
<corners android:radius="14dp" />
|
||||
<solid android:color="#10ffffff" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
12
live/src/main/res/drawable/background_b1b1b1.xml
Normal file
12
live/src/main/res/drawable/background_b1b1b1.xml
Normal file
@@ -0,0 +1,12 @@
|
||||
<?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="100dp" />
|
||||
<solid android:color="#b1b1b1" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector
|
||||
|
||||
|
||||
>
|
||||
9
live/src/main/res/drawable/background_cc000.xml
Normal file
9
live/src/main/res/drawable/background_cc000.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="15dp" />
|
||||
<solid android:color="#cc000000" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
9
live/src/main/res/drawable/background_chat_msg.xml
Normal file
9
live/src/main/res/drawable/background_chat_msg.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="5dp" />
|
||||
<solid android:color="@color/yellow_ffbf2f" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
9
live/src/main/res/drawable/background_chat_msg2.xml
Normal file
9
live/src/main/res/drawable/background_chat_msg2.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="5dp" />
|
||||
<solid android:color="@color/white" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
9
live/src/main/res/drawable/background_d18_white.xml
Normal file
9
live/src/main/res/drawable/background_d18_white.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="18dp" />
|
||||
<solid android:color="@color/white" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
9
live/src/main/res/drawable/background_d5_white.xml
Normal file
9
live/src/main/res/drawable/background_d5_white.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="15dp" />
|
||||
<solid android:color="@color/white" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
9
live/src/main/res/drawable/background_d6e8fe.xml
Normal file
9
live/src/main/res/drawable/background_d6e8fe.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:topLeftRadius="30dp" android:topRightRadius="30dp"/>
|
||||
<solid android:color="#D6E8FE" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
9
live/src/main/res/drawable/background_dedede.xml
Normal file
9
live/src/main/res/drawable/background_dedede.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="15dp" />
|
||||
<solid android:color="#4D000000" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
9
live/src/main/res/drawable/background_eb6877.xml
Normal file
9
live/src/main/res/drawable/background_eb6877.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="30dp" />
|
||||
<solid android:color="#EB6877" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
9
live/src/main/res/drawable/background_ebebeb.xml
Normal file
9
live/src/main/res/drawable/background_ebebeb.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="#ebebeb" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
9
live/src/main/res/drawable/background_f4f7fc.xml
Normal file
9
live/src/main/res/drawable/background_f4f7fc.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="100dp" />
|
||||
<solid android:color="#fff4f7fc" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
9
live/src/main/res/drawable/background_fc6945.xml
Normal file
9
live/src/main/res/drawable/background_fc6945.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="13dp" />
|
||||
<solid android:color="#FC6945" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
12
live/src/main/res/drawable/background_fd36ff.xml
Normal file
12
live/src/main/res/drawable/background_fd36ff.xml
Normal file
@@ -0,0 +1,12 @@
|
||||
<?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="30dp" />
|
||||
<gradient android:angle="90" android:endColor="#FD36FF" android:startColor="#FF6BEF" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector
|
||||
|
||||
|
||||
>
|
||||
12
live/src/main/res/drawable/background_ff5075.xml
Normal file
12
live/src/main/res/drawable/background_ff5075.xml
Normal file
@@ -0,0 +1,12 @@
|
||||
<?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="50dp" />
|
||||
<solid android:color="#FF5533" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector
|
||||
|
||||
|
||||
>
|
||||
9
live/src/main/res/drawable/background_ff63c1.xml
Normal file
9
live/src/main/res/drawable/background_ff63c1.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="30dp" />
|
||||
<solid android:color="#FF63C1" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
9
live/src/main/res/drawable/background_ffbe41.xml
Normal file
9
live/src/main/res/drawable/background_ffbe41.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="@color/yellow_ffbe41" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
9
live/src/main/res/drawable/background_fff.xml
Normal file
9
live/src/main/res/drawable/background_fff.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="15dp" />
|
||||
<solid android:color="#ffffff" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
9
live/src/main/res/drawable/background_fff_d20.xml
Normal file
9
live/src/main/res/drawable/background_fff_d20.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="30dp" />
|
||||
<solid android:color="#ffffff" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
9
live/src/main/res/drawable/background_gift.xml
Normal file
9
live/src/main/res/drawable/background_gift.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="52dp" />
|
||||
<solid android:color="#30000000" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
13
live/src/main/res/drawable/background_gift_select.xml
Normal file
13
live/src/main/res/drawable/background_gift_select.xml
Normal file
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_selected="true">
|
||||
<shape android:shape="rectangle">
|
||||
<corners android:radius="4dp" />
|
||||
<solid android:color="#e6272C42" />
|
||||
<stroke android:width="0.6dp" android:color="#AEAEB2" />
|
||||
</shape>
|
||||
</item>
|
||||
<item android:state_selected="false">
|
||||
<shape android:shape="rectangle"></shape>
|
||||
</item>
|
||||
</selector>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<gradient
|
||||
android:angle="90"
|
||||
android:centerColor="#8391FE"
|
||||
android:endColor="#818CFF"
|
||||
android:startColor="#8D9DFF" />
|
||||
</shape>
|
||||
14
live/src/main/res/drawable/background_gradient_circular.xml
Normal file
14
live/src/main/res/drawable/background_gradient_circular.xml
Normal file
@@ -0,0 +1,14 @@
|
||||
<?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="10dp" />
|
||||
|
||||
<gradient
|
||||
android:startColor="#FF9100"
|
||||
android:endColor="#FF6600"
|
||||
android:angle="90"/>
|
||||
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
9
live/src/main/res/drawable/background_horn.xml
Normal file
9
live/src/main/res/drawable/background_horn.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:topLeftRadius="20dp" android:topRightRadius="20dp" />
|
||||
<solid android:color="#fff" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
9
live/src/main/res/drawable/background_live_end.xml
Normal file
9
live/src/main/res/drawable/background_live_end.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="50dp" />
|
||||
<solid android:color="#FFFD6052" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
9
live/src/main/res/drawable/background_live_end_btn.xml
Normal file
9
live/src/main/res/drawable/background_live_end_btn.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="23.33dp" />
|
||||
<solid android:color="#FFFFC621" />
|
||||
</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>
|
||||
<shape android:shape="rectangle">
|
||||
<corners android:radius="5dp" />
|
||||
<solid android:color="#cc000000" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<gradient
|
||||
android:angle="180"
|
||||
android:centerColor="#FF9615"
|
||||
android:endColor="#EB7314"
|
||||
android:startColor="#FFBD14" />
|
||||
<corners android:radius="12dp" />
|
||||
</shape>
|
||||
9
live/src/main/res/drawable/background_naming.xml
Normal file
9
live/src/main/res/drawable/background_naming.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" />
|
||||
<gradient android:endColor="#EC9BFF" android:startColor="#BA68FF" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
9
live/src/main/res/drawable/background_naming_icon.xml
Normal file
9
live/src/main/res/drawable/background_naming_icon.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:bottomLeftRadius="25dp" android:topRightRadius="25dp" />
|
||||
<solid android:color="#F7D80B" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<corners android:radius="320dp" />
|
||||
<stroke
|
||||
android:width="3dp"
|
||||
android:color="#FBD16C" />
|
||||
<solid android:color="#FD2D48" />
|
||||
</shape>
|
||||
9
live/src/main/res/drawable/background_orange.xml
Normal file
9
live/src/main/res/drawable/background_orange.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="60dp" />
|
||||
<solid android:color="#FF8D41" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
5
live/src/main/res/drawable/background_pk_time.xml
Normal file
5
live/src/main/res/drawable/background_pk_time.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<solid android:color="#60000000" />
|
||||
<corners android:radius="7.17dp" />
|
||||
</shape>
|
||||
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<corners android:radius="23dp" />
|
||||
<solid android:color="#40FFC0D5" />
|
||||
</shape>
|
||||
15
live/src/main/res/drawable/background_red_packet_select.xml
Normal file
15
live/src/main/res/drawable/background_red_packet_select.xml
Normal file
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_selected="true">
|
||||
<shape android:shape="rectangle">
|
||||
<corners android:radius="15dp" />
|
||||
<solid android:color="#FCC438" />
|
||||
</shape>
|
||||
</item>
|
||||
<item android:state_selected="false">
|
||||
<shape android:shape="rectangle">
|
||||
<corners android:radius="15dp" />
|
||||
<stroke android:width="1dp" android:color="#FCC438" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
8
live/src/main/res/drawable/background_regular.xml
Normal file
8
live/src/main/res/drawable/background_regular.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>
|
||||
<shape android:shape="rectangle">
|
||||
<gradient android:angle="90" android:centerColor="#D5C9FF" android:endColor="#E5EBFF" android:startColor="#8C96FF" android:type="linear" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
9
live/src/main/res/drawable/background_regular_center.xml
Normal file
9
live/src/main/res/drawable/background_regular_center.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="10dp" />
|
||||
<gradient android:angle="90" android:endColor="#FDFBFF" android:startColor="#F8EEFF" android:type="linear" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<corners android:radius="20dp" />
|
||||
<gradient
|
||||
android:angle="90"
|
||||
android:endColor="#FDCF46"
|
||||
android:startColor="#FFDB86" />
|
||||
</shape>
|
||||
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<corners android:radius="16dp" />
|
||||
<solid android:color="#cc000000" />
|
||||
</shape>
|
||||
9
live/src/main/res/drawable/background_system_message.xml
Normal file
9
live/src/main/res/drawable/background_system_message.xml
Normal file
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<corners android:radius="95dp" />
|
||||
<solid android:color="@color/red" />
|
||||
<stroke
|
||||
android:width="1dp"
|
||||
android:color="@color/white" />
|
||||
|
||||
</shape>
|
||||
9
live/src/main/res/drawable/background_yellow.xml
Normal file
9
live/src/main/res/drawable/background_yellow.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="30dp" />
|
||||
<solid android:color="#FFCD34" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
7
live/src/main/res/drawable/bc_sound_recording_left.xml
Normal file
7
live/src/main/res/drawable/bc_sound_recording_left.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:bottomLeftRadius="17dp"
|
||||
android:topLeftRadius="17dp" />
|
||||
<solid android:color="#98000000" />
|
||||
</shape>
|
||||
7
live/src/main/res/drawable/bc_sound_recording_right.xml
Normal file
7
live/src/main/res/drawable/bc_sound_recording_right.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:bottomRightRadius="17dp"
|
||||
android:topRightRadius="17dp" />
|
||||
<solid android:color="#20FFFFFF" />
|
||||
</shape>
|
||||
8
live/src/main/res/drawable/bg_100_leave.xml
Normal file
8
live/src/main/res/drawable/bg_100_leave.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="12dp"/>
|
||||
<gradient
|
||||
android:startColor="#27FF3F33"
|
||||
android:endColor="#45FB8560"
|
||||
android:angle="0"/>
|
||||
</shape>
|
||||
8
live/src/main/res/drawable/bg_30_leave.xml
Normal file
8
live/src/main/res/drawable/bg_30_leave.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="12dp"/>
|
||||
<gradient
|
||||
android:startColor="#1033DDFF"
|
||||
android:endColor="#00548CFF"
|
||||
android:angle="0"/>
|
||||
</shape>
|
||||
8
live/src/main/res/drawable/bg_50_leave.xml
Normal file
8
live/src/main/res/drawable/bg_50_leave.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="12dp"/>
|
||||
<gradient
|
||||
android:startColor="#10D117FF"
|
||||
android:endColor="#297654FF"
|
||||
android:angle="0"/>
|
||||
</shape>
|
||||
8
live/src/main/res/drawable/bg_60_leave.xml
Normal file
8
live/src/main/res/drawable/bg_60_leave.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="12dp"/>
|
||||
<gradient
|
||||
android:startColor="#16FFAD33"
|
||||
android:endColor="#16FF8754"
|
||||
android:angle="0"/>
|
||||
</shape>
|
||||
8
live/src/main/res/drawable/bg_80_leave.xml
Normal file
8
live/src/main/res/drawable/bg_80_leave.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="12dp"/>
|
||||
<gradient
|
||||
android:startColor="#36EA882E"
|
||||
android:endColor="#26FF7D54"
|
||||
android:angle="0"/>
|
||||
</shape>
|
||||
5
live/src/main/res/drawable/bg_add_impress.xml
Normal file
5
live/src/main/res/drawable/bg_add_impress.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="13dp"/>
|
||||
<solid android:color="#F0F0F0"/>
|
||||
</shape>
|
||||
BIN
live/src/main/res/drawable/bg_add_wish.png
Normal file
BIN
live/src/main/res/drawable/bg_add_wish.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 7.7 KiB |
5
live/src/main/res/drawable/bg_all_guard_icon.xml
Normal file
5
live/src/main/res/drawable/bg_all_guard_icon.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="25dp" />
|
||||
<solid android:color="@color/blue_337cf5" />
|
||||
</shape>
|
||||
5
live/src/main/res/drawable/bg_all_server_336cf7.xml
Normal file
5
live/src/main/res/drawable/bg_all_server_336cf7.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
|
||||
<corners android:radius="13dp" />
|
||||
<solid android:color="#336CF7" />
|
||||
</shape>
|
||||
5
live/src/main/res/drawable/bg_all_server_fcb50e.xml
Normal file
5
live/src/main/res/drawable/bg_all_server_fcb50e.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
|
||||
<corners android:radius="13dp" />
|
||||
<solid android:color="#FCB50E" />
|
||||
</shape>
|
||||
6
live/src/main/res/drawable/bg_all_server_fd5a9d.xml
Normal file
6
live/src/main/res/drawable/bg_all_server_fd5a9d.xml
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<corners android:radius="13dp" />
|
||||
<solid android:color="#FD5A9D" />
|
||||
</shape>
|
||||
5
live/src/main/res/drawable/bg_all_server_icon.xml
Normal file
5
live/src/main/res/drawable/bg_all_server_icon.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="25dp"/>
|
||||
<solid android:color="@color/purple_c81de0"/>
|
||||
</shape>
|
||||
5
live/src/main/res/drawable/bg_all_vip_icon.xml
Normal file
5
live/src/main/res/drawable/bg_all_vip_icon.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="25dp" />
|
||||
<solid android:color="@color/yellow_fd890e" />
|
||||
</shape>
|
||||
9
live/src/main/res/drawable/bg_anchor_say.xml
Normal file
9
live/src/main/res/drawable/bg_anchor_say.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 android:width="166dp" android:height="162dp">
|
||||
<shape android:shape="rectangle">
|
||||
<solid android:color="#337792D0" />
|
||||
<corners android:radius="8dp" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
10
live/src/main/res/drawable/bg_anchor_say_select.xml
Normal file
10
live/src/main/res/drawable/bg_anchor_say_select.xml
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:width="166dp" android:height="162dp">
|
||||
<shape android:shape="rectangle">
|
||||
<stroke android:width="1dp" android:color="#ffffc621" />
|
||||
<solid android:color="#337792D0" />
|
||||
<corners android:radius="8dp" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
10
live/src/main/res/drawable/bg_btn_buy_guard.xml
Normal file
10
live/src/main/res/drawable/bg_btn_buy_guard.xml
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_checked="true">
|
||||
<layer-list>
|
||||
<item android:gravity="center_horizontal|bottom">
|
||||
<bitmap android:src="@mipmap/icon_guard_buy_top"/>
|
||||
</item>
|
||||
</layer-list>
|
||||
</item>
|
||||
</selector>
|
||||
5
live/src/main/res/drawable/bg_btn_cancel.xml
Normal file
5
live/src/main/res/drawable/bg_btn_cancel.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="14dp"/>
|
||||
<stroke android:color="@color/global" android:width="1dp"/>
|
||||
</shape>
|
||||
5
live/src/main/res/drawable/bg_btn_confirm.xml
Normal file
5
live/src/main/res/drawable/bg_btn_confirm.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="14dp"/>
|
||||
<solid android:color="@color/global"/>
|
||||
</shape>
|
||||
5
live/src/main/res/drawable/bg_btn_game.xml
Normal file
5
live/src/main/res/drawable/bg_btn_game.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="@color/global"/>
|
||||
</shape>
|
||||
5
live/src/main/res/drawable/bg_btn_gift_lian.xml
Normal file
5
live/src/main/res/drawable/bg_btn_gift_lian.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:drawable="@mipmap/icon_live_gift_lian_1" android:state_pressed="true"/>
|
||||
<item android:drawable="@mipmap/icon_live_gift_lian_0" android:state_pressed="false"/>
|
||||
</selector>
|
||||
15
live/src/main/res/drawable/bg_btn_live_pk.xml
Normal file
15
live/src/main/res/drawable/bg_btn_live_pk.xml
Normal file
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_enabled="true">
|
||||
<shape>
|
||||
<corners android:radius="12dp"/>
|
||||
<stroke android:width="1dp" android:color="@color/global"/>
|
||||
</shape>
|
||||
</item>
|
||||
<item android:state_enabled="false">
|
||||
<shape>
|
||||
<corners android:radius="12dp"/>
|
||||
<stroke android:width="1dp" android:color="@color/gray3"/>
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
5
live/src/main/res/drawable/bg_btn_pri_chat.xml
Normal file
5
live/src/main/res/drawable/bg_btn_pri_chat.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="24dp"/>
|
||||
<solid android:color="@color/global"/>
|
||||
</shape>
|
||||
9
live/src/main/res/drawable/bg_chat_automatic_item.xml
Normal file
9
live/src/main/res/drawable/bg_chat_automatic_item.xml
Normal file
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<corners android:radius="15dp"/>
|
||||
<!--实现应用背景颜色渐变-->
|
||||
<gradient
|
||||
android:startColor="@color/red_FD5E53"
|
||||
android:endColor="@color/red_FF1679"
|
||||
android:angle="45"/>
|
||||
</shape>
|
||||
5
live/src/main/res/drawable/bg_chat_follow.xml
Normal file
5
live/src/main/res/drawable/bg_chat_follow.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="25dp"/>
|
||||
<solid android:color="@color/red_FD6052"/>
|
||||
</shape>
|
||||
7
live/src/main/res/drawable/bg_decrease2.xml
Normal file
7
live/src/main/res/drawable/bg_decrease2.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:topLeftRadius="150dp"
|
||||
android:bottomLeftRadius="150dp"
|
||||
/>
|
||||
<solid android:color="#ff516a"/>
|
||||
</shape>
|
||||
5
live/src/main/res/drawable/bg_dialog_music_top.xml
Normal file
5
live/src/main/res/drawable/bg_dialog_music_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:topLeftRadius="10dp" android:topRightRadius="10dp"/>
|
||||
<solid android:color="@color/global"/>
|
||||
</shape>
|
||||
22
live/src/main/res/drawable/bg_ef51bf_line_ffeff2.xml
Normal file
22
live/src/main/res/drawable/bg_ef51bf_line_ffeff2.xml
Normal file
@@ -0,0 +1,22 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item>
|
||||
<shape android:shape="rectangle">
|
||||
<corners android:radius="20dp"/>
|
||||
<gradient
|
||||
android:type="linear"
|
||||
android:startColor="#EF51BF"
|
||||
android:endColor="#5C63F0"
|
||||
android:angle="-90" />
|
||||
</shape>
|
||||
</item>
|
||||
<item android:left="5dp"
|
||||
android:right="5dp"
|
||||
android:top="5dp"
|
||||
android:bottom="5dp">
|
||||
<shape android:shape="rectangle">
|
||||
<corners android:radius="20dp"/>
|
||||
<solid android:color="#5A00C4"/>
|
||||
</shape>
|
||||
</item>
|
||||
</layer-list>
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user