修改名称。
5
BaseModule/src/main/res/anim/a_slide_left_in.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<translate android:duration="300" android:fromXDelta="-100.0%p" android:toXDelta="0.0" />
|
||||
</set>
|
||||
5
BaseModule/src/main/res/anim/a_slide_left_out.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<translate android:duration="300" android:fromXDelta="0.0" android:toXDelta="-100.0%p" />
|
||||
</set>
|
||||
5
BaseModule/src/main/res/anim/a_slide_right_in.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<translate android:duration="300" android:fromXDelta="100.0%p" android:toXDelta="0.0" />
|
||||
</set>
|
||||
5
BaseModule/src/main/res/anim/a_slide_right_out.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<translate android:duration="300" android:fromXDelta="0.0" android:toXDelta="100.0%p" />
|
||||
</set>
|
||||
19
BaseModule/src/main/res/anim/anim_center_enter.xml
Normal file
@@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<scale
|
||||
android:duration="150"
|
||||
android:fromXScale="0.9"
|
||||
android:fromYScale="0.9"
|
||||
android:interpolator="@android:anim/accelerate_decelerate_interpolator"
|
||||
android:pivotX="50%"
|
||||
android:pivotY="50%"
|
||||
android:toXScale="1.0"
|
||||
android:toYScale="1.0"
|
||||
/>
|
||||
<alpha
|
||||
android:duration="150"
|
||||
android:fromAlpha="0.0"
|
||||
android:interpolator="@android:anim/decelerate_interpolator"
|
||||
android:toAlpha="1.0" />
|
||||
</set>
|
||||
18
BaseModule/src/main/res/anim/anim_center_exit.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="150"
|
||||
android:fromXScale="1.0"
|
||||
android:fromYScale="1.0"
|
||||
android:interpolator="@android:anim/decelerate_interpolator"
|
||||
android:pivotX="50%"
|
||||
android:pivotY="50%"
|
||||
android:toXScale="0.9"
|
||||
android:toYScale="0.9" />
|
||||
<alpha
|
||||
android:duration="150"
|
||||
android:fromAlpha="1.0"
|
||||
android:interpolator="@android:anim/decelerate_interpolator"
|
||||
android:toAlpha="0.0" />
|
||||
</set>
|
||||
15
BaseModule/src/main/res/anim/anim_scale_in.xml
Normal file
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<scale
|
||||
android:fromXScale="0.0"
|
||||
android:toXScale="1.0"
|
||||
android:fromYScale="0.0"
|
||||
android:toYScale="1.0"
|
||||
android:pivotX="50%"
|
||||
android:pivotY="50%"
|
||||
android:duration="500"/>
|
||||
<alpha
|
||||
android:fromAlpha="0.0"
|
||||
android:toAlpha="1.0"
|
||||
android:duration="500"/>
|
||||
</set>
|
||||
10
BaseModule/src/main/res/anim/bottomview_anim_enter.xml
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<translate
|
||||
android:duration="300"
|
||||
android:fromYDelta="100%p"
|
||||
android:toYDelta="0"
|
||||
/>
|
||||
|
||||
</set>
|
||||
10
BaseModule/src/main/res/anim/bottomview_anim_enter_2.xml
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<translate
|
||||
android:duration="200"
|
||||
android:fromYDelta="100%p"
|
||||
android:toYDelta="0"
|
||||
/>
|
||||
|
||||
</set>
|
||||
10
BaseModule/src/main/res/anim/bottomview_anim_exit.xml
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<translate
|
||||
android:duration="300"
|
||||
android:fromYDelta="0"
|
||||
android:toYDelta="100%p"
|
||||
/>
|
||||
|
||||
</set>
|
||||
10
BaseModule/src/main/res/anim/bottomview_anim_exit_2.xml
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<translate
|
||||
android:duration="200"
|
||||
android:fromYDelta="0"
|
||||
android:toYDelta="100%p"
|
||||
/>
|
||||
|
||||
</set>
|
||||
4
BaseModule/src/main/res/anim/dialog_enter.xml
Normal file
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<translate android:fromYDelta="100%p" android:duration="400"/>
|
||||
</set>
|
||||
4
BaseModule/src/main/res/anim/dialog_exit.xml
Normal file
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<translate android:toYDelta="100%p" android:duration="400"/>
|
||||
</set>
|
||||
5
BaseModule/src/main/res/anim/fade_in.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<alpha xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@android:anim/accelerate_interpolator"
|
||||
android:fromAlpha="0.0" android:toAlpha="1.0"
|
||||
android:duration="300" />
|
||||
5
BaseModule/src/main/res/anim/fade_out.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<alpha xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@android:anim/accelerate_interpolator"
|
||||
android:fromAlpha="1.0" android:toAlpha="0.0"
|
||||
android:duration="300" />
|
||||
5
BaseModule/src/main/res/anim/hold.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<translate xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@android:anim/accelerate_interpolator"
|
||||
android:fromXDelta="0" android:toXDelta="0"
|
||||
android:duration="300" />
|
||||
14
BaseModule/src/main/res/anim/image_rotate.xml
Normal file
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shareInterpolator="false">
|
||||
<rotate
|
||||
android:duration="3000"
|
||||
android:fromDegrees="0"
|
||||
android:interpolator="@android:anim/linear_interpolator"
|
||||
android:pivotX="50%"
|
||||
android:pivotY="50%"
|
||||
android:repeatCount="-1"
|
||||
android:repeatMode="restart"
|
||||
android:startOffset="-1"
|
||||
android:toDegrees="+360" />
|
||||
</set>
|
||||
11
BaseModule/src/main/res/anim/left_anim_enter.xml
Normal file
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
>
|
||||
|
||||
<translate
|
||||
android:duration="200"
|
||||
android:fromXDelta="100%p"
|
||||
android:interpolator="@android:anim/accelerate_interpolator"
|
||||
android:toXDelta="0"
|
||||
/>
|
||||
</set>
|
||||
10
BaseModule/src/main/res/anim/left_anim_exit.xml
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<translate
|
||||
android:duration="200"
|
||||
android:fromXDelta="0"
|
||||
android:interpolator="@android:anim/accelerate_interpolator"
|
||||
android:toXDelta="100%p"
|
||||
/>
|
||||
</set>
|
||||
13
BaseModule/src/main/res/anim/popup_hide.xml
Normal file
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- res/anim/popup_hide.xml -->
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<scale
|
||||
android:duration="200"
|
||||
android:fromXScale="1.0"
|
||||
android:fromYScale="1.0"
|
||||
android:toXScale="0.0"
|
||||
android:toYScale="0.0"
|
||||
android:pivotX="50%"
|
||||
android:pivotY="50%"
|
||||
android:interpolator="@android:anim/accelerate_decelerate_interpolator" />
|
||||
</set>
|
||||
6
BaseModule/src/main/res/anim/popup_in.xml
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<translate xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:duration="400"
|
||||
android:fromYDelta="100%"
|
||||
android:toXDelta="0"
|
||||
/>
|
||||
22
BaseModule/src/main/res/anim/popup_in_select.xml
Normal file
@@ -0,0 +1,22 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:fillAfter="true"
|
||||
android:fillEnabled="true" >
|
||||
|
||||
<scale
|
||||
android:duration="200"
|
||||
android:fromXScale="1.0"
|
||||
android:fromYScale="0.0"
|
||||
android:interpolator="@android:anim/accelerate_decelerate_interpolator"
|
||||
android:pivotX="50%"
|
||||
android:pivotY="0%"
|
||||
android:toXScale="1.0"
|
||||
android:toYScale="1.0" >
|
||||
</scale>
|
||||
|
||||
<alpha
|
||||
android:duration="180"
|
||||
android:fromAlpha="0.0"
|
||||
android:toAlpha="1.0" />
|
||||
|
||||
</set>
|
||||
6
BaseModule/src/main/res/anim/popup_out.xml
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<translate xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:duration="400"
|
||||
android:fromYDelta="0"
|
||||
android:toYDelta="100%"
|
||||
/>
|
||||
21
BaseModule/src/main/res/anim/popup_out_select.xml
Normal file
@@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:fillAfter="true"
|
||||
android:fillEnabled="true">
|
||||
|
||||
<scale
|
||||
android:duration="200"
|
||||
android:fromXScale="1.0"
|
||||
android:fromYScale="1.0"
|
||||
android:interpolator="@android:anim/accelerate_interpolator"
|
||||
android:pivotX="50%"
|
||||
android:pivotY="0%"
|
||||
android:toXScale="1.0"
|
||||
android:toYScale="0.0"></scale>
|
||||
|
||||
<alpha
|
||||
android:duration="180"
|
||||
android:fromAlpha="1.0"
|
||||
android:toAlpha="0.0" />
|
||||
|
||||
</set>
|
||||
12
BaseModule/src/main/res/anim/popup_show.xml
Normal file
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<scale
|
||||
android:duration="200"
|
||||
android:fromXScale="0.0"
|
||||
android:fromYScale="0.0"
|
||||
android:toXScale="1.0"
|
||||
android:toYScale="1.0"
|
||||
android:pivotX="50%"
|
||||
android:pivotY="50%"
|
||||
android:interpolator="@android:anim/accelerate_decelerate_interpolator" />
|
||||
</set>
|
||||
22
BaseModule/src/main/res/anim/room_anim_set_welcome.xml
Normal file
@@ -0,0 +1,22 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<alpha
|
||||
android:duration="200"
|
||||
android:fromAlpha="0.0"
|
||||
android:interpolator="@android:anim/decelerate_interpolator"
|
||||
android:toAlpha="1.0" />
|
||||
<translate
|
||||
android:duration="200"
|
||||
android:fromXDelta="100%"
|
||||
android:toXDelta="10%" />
|
||||
<translate
|
||||
android:duration="2000"
|
||||
android:fromXDelta="10%"
|
||||
android:startOffset="200"
|
||||
android:toXDelta="0" />
|
||||
<translate
|
||||
android:duration="200"
|
||||
android:fromXDelta="0"
|
||||
android:startOffset="2200"
|
||||
android:toXDelta="-120%" />
|
||||
</set>
|
||||
14
BaseModule/src/main/res/anim/rotate_anim.xml
Normal file
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shareInterpolator="false">
|
||||
<rotate
|
||||
android:duration="20000"
|
||||
android:fromDegrees="0"
|
||||
android:interpolator="@android:anim/linear_interpolator"
|
||||
android:pivotX="50%"
|
||||
android:pivotY="50%"
|
||||
android:repeatCount="-1"
|
||||
android:repeatMode="restart"
|
||||
android:startOffset="-1"
|
||||
android:toDegrees="+360" />
|
||||
</set>
|
||||
10
BaseModule/src/main/res/anim/shake.xml
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<rotate xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:duration="700"
|
||||
android:fromDegrees="-5"
|
||||
android:pivotX="50%"
|
||||
android:pivotY="50%"
|
||||
android:repeatCount="infinite"
|
||||
android:repeatMode="reverse"
|
||||
android:toDegrees="5"
|
||||
android:interpolator="@android:anim/accelerate_decelerate_interpolator" />
|
||||
12
BaseModule/src/main/res/anim/slide_down.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:fromYDelta="0"
|
||||
android:toYDelta="100%"
|
||||
android:duration="300"/>
|
||||
<alpha
|
||||
android:fromAlpha="1.0"
|
||||
android:toAlpha="0.8"
|
||||
android:duration="300" />
|
||||
</set>
|
||||
|
||||
7
BaseModule/src/main/res/anim/slide_in_bottom.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:fromYDelta="100%"
|
||||
android:toYDelta="0%"
|
||||
android:duration="300"/>
|
||||
</set>
|
||||
9
BaseModule/src/main/res/anim/slide_in_from_left.xml
Normal file
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android" >
|
||||
|
||||
<translate
|
||||
android:duration="200"
|
||||
android:fromXDelta="-100%p"
|
||||
android:toXDelta="0" />
|
||||
|
||||
</set>
|
||||
9
BaseModule/src/main/res/anim/slide_in_right.xml
Normal file
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<translate
|
||||
android:duration="200"
|
||||
android:fromXDelta="100%p"
|
||||
android:toXDelta="0" />
|
||||
|
||||
</set>
|
||||
7
BaseModule/src/main/res/anim/slide_out_bottom.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:fromYDelta="0%"
|
||||
android:toYDelta="100%"
|
||||
android:duration="300"/>
|
||||
</set>
|
||||
9
BaseModule/src/main/res/anim/slide_out_right.xml
Normal file
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<translate
|
||||
android:duration="200"
|
||||
android:fromXDelta="0"
|
||||
android:toXDelta="100%p" />
|
||||
|
||||
</set>
|
||||
9
BaseModule/src/main/res/anim/slide_out_to_right.xml
Normal file
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android" >
|
||||
|
||||
<translate
|
||||
android:duration="200"
|
||||
android:fromXDelta="0"
|
||||
android:toXDelta="100%p" />
|
||||
|
||||
</set>
|
||||
11
BaseModule/src/main/res/anim/slide_up.xml
Normal file
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<translate
|
||||
android:fromYDelta="100%"
|
||||
android:toYDelta="0"
|
||||
android:duration="300"/>
|
||||
<alpha
|
||||
android:fromAlpha="0.8"
|
||||
android:toAlpha="1.0"
|
||||
android:duration="300" />
|
||||
</set>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<translate
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@android:anim/accelerate_decelerate_interpolator"
|
||||
android:duration="200"
|
||||
android:fromYDelta="100%p"
|
||||
android:startOffset="30"
|
||||
android:toYDelta="0"/>
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<translate
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@android:anim/accelerate_decelerate_interpolator"
|
||||
android:duration="200"
|
||||
android:fromYDelta="0"
|
||||
android:toYDelta="100%p" />
|
||||
BIN
BaseModule/src/main/res/drawable-xxxhdpi/ac_left_gift_bg.png
Normal file
|
After Width: | Height: | Size: 37 KiB |
BIN
BaseModule/src/main/res/drawable-xxxhdpi/ac_lock_gift_bg.png
Normal file
|
After Width: | Height: | Size: 84 KiB |
|
After Width: | Height: | Size: 185 KiB |
|
After Width: | Height: | Size: 46 KiB |
BIN
BaseModule/src/main/res/drawable-xxxhdpi/ac_time_down_bg.png
Normal file
|
After Width: | Height: | Size: 406 KiB |
BIN
BaseModule/src/main/res/drawable-xxxhdpi/bg_room_gift.webp
Normal file
|
After Width: | Height: | Size: 79 KiB |
BIN
BaseModule/src/main/res/drawable-xxxhdpi/custom.webp
Normal file
|
After Width: | Height: | Size: 626 B |
BIN
BaseModule/src/main/res/drawable-xxxhdpi/detail_icon_go.webp
Normal file
|
After Width: | Height: | Size: 242 B |
|
After Width: | Height: | Size: 130 B |
BIN
BaseModule/src/main/res/drawable-xxxhdpi/gift_background.webp
Normal file
|
After Width: | Height: | Size: 9.2 KiB |
BIN
BaseModule/src/main/res/drawable-xxxhdpi/group.webp
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
|
After Width: | Height: | Size: 860 B |
|
After Width: | Height: | Size: 652 B |
BIN
BaseModule/src/main/res/drawable-xxxhdpi/ic_topbar_back_dark.png
Normal file
|
After Width: | Height: | Size: 705 B |
BIN
BaseModule/src/main/res/drawable-xxxhdpi/icon_btn_radio_0.webp
Normal file
|
After Width: | Height: | Size: 550 B |
BIN
BaseModule/src/main/res/drawable-xxxhdpi/icon_btn_radio_1.webp
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
BaseModule/src/main/res/drawable-xxxhdpi/icon_pay_select.webp
Normal file
|
After Width: | Height: | Size: 856 B |
BIN
BaseModule/src/main/res/drawable-xxxhdpi/icon_pay_unselect.webp
Normal file
|
After Width: | Height: | Size: 652 B |
BIN
BaseModule/src/main/res/drawable-xxxhdpi/image_yq.webp
Normal file
|
After Width: | Height: | Size: 730 B |
BIN
BaseModule/src/main/res/drawable-xxxhdpi/img_emperor.webp
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
BaseModule/src/main/res/drawable-xxxhdpi/me_avatar_bg.webp
Normal file
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 690 B |
|
After Width: | Height: | Size: 1.0 KiB |
BIN
BaseModule/src/main/res/drawable-xxxhdpi/phonetic.webp
Normal file
|
After Width: | Height: | Size: 562 B |
BIN
BaseModule/src/main/res/drawable-xxxhdpi/red_bag_btn_bg_nor.png
Normal file
|
After Width: | Height: | Size: 682 B |
BIN
BaseModule/src/main/res/drawable-xxxhdpi/red_bag_btn_bg_sel.png
Normal file
|
After Width: | Height: | Size: 4.1 KiB |
BIN
BaseModule/src/main/res/drawable-xxxhdpi/red_bag_next_btn_bg.png
Normal file
|
After Width: | Height: | Size: 39 KiB |
|
After Width: | Height: | Size: 574 B |
|
After Width: | Height: | Size: 3.6 KiB |
|
After Width: | Height: | Size: 1.9 KiB |
BIN
BaseModule/src/main/res/drawable-xxxhdpi/room_redbag_back.png
Normal file
|
After Width: | Height: | Size: 291 B |
BIN
BaseModule/src/main/res/drawable-xxxhdpi/room_redbag_help.png
Normal file
|
After Width: | Height: | Size: 1006 B |
BIN
BaseModule/src/main/res/drawable-xxxhdpi/star_00000.webp
Normal file
|
After Width: | Height: | Size: 340 B |
BIN
BaseModule/src/main/res/drawable-xxxhdpi/star_00001.webp
Normal file
|
After Width: | Height: | Size: 510 B |
BIN
BaseModule/src/main/res/drawable-xxxhdpi/star_00002.webp
Normal file
|
After Width: | Height: | Size: 524 B |
BIN
BaseModule/src/main/res/drawable-xxxhdpi/star_00003.webp
Normal file
|
After Width: | Height: | Size: 678 B |
BIN
BaseModule/src/main/res/drawable-xxxhdpi/star_00004.webp
Normal file
|
After Width: | Height: | Size: 680 B |
BIN
BaseModule/src/main/res/drawable-xxxhdpi/star_00005.webp
Normal file
|
After Width: | Height: | Size: 856 B |
BIN
BaseModule/src/main/res/drawable-xxxhdpi/star_00006.webp
Normal file
|
After Width: | Height: | Size: 860 B |
BIN
BaseModule/src/main/res/drawable-xxxhdpi/star_00007.webp
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
BaseModule/src/main/res/drawable-xxxhdpi/star_00008.webp
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
BaseModule/src/main/res/drawable-xxxhdpi/star_00009.webp
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
BaseModule/src/main/res/drawable-xxxhdpi/star_00010.webp
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
BaseModule/src/main/res/drawable-xxxhdpi/star_00011.webp
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
BaseModule/src/main/res/drawable-xxxhdpi/star_00012.webp
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
BaseModule/src/main/res/drawable-xxxhdpi/star_00013.webp
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
BaseModule/src/main/res/drawable-xxxhdpi/star_00014.webp
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
BaseModule/src/main/res/drawable-xxxhdpi/star_00015.webp
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
BaseModule/src/main/res/drawable-xxxhdpi/star_00016.webp
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
BaseModule/src/main/res/drawable-xxxhdpi/star_00017.webp
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
BaseModule/src/main/res/drawable-xxxhdpi/star_00018.webp
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
BaseModule/src/main/res/drawable-xxxhdpi/star_00019.webp
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
BaseModule/src/main/res/drawable-xxxhdpi/star_00020.webp
Normal file
|
After Width: | Height: | Size: 2.4 KiB |
BIN
BaseModule/src/main/res/drawable-xxxhdpi/star_00021.webp
Normal file
|
After Width: | Height: | Size: 2.5 KiB |
BIN
BaseModule/src/main/res/drawable-xxxhdpi/star_00022.webp
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
BIN
BaseModule/src/main/res/drawable-xxxhdpi/star_00023.webp
Normal file
|
After Width: | Height: | Size: 3.0 KiB |
BIN
BaseModule/src/main/res/drawable-xxxhdpi/star_00024.webp
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
BaseModule/src/main/res/drawable-xxxhdpi/star_00025.webp
Normal file
|
After Width: | Height: | Size: 3.1 KiB |
BIN
BaseModule/src/main/res/drawable-xxxhdpi/star_00026.webp
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
BaseModule/src/main/res/drawable-xxxhdpi/star_00027.webp
Normal file
|
After Width: | Height: | Size: 2.9 KiB |
BIN
BaseModule/src/main/res/drawable-xxxhdpi/star_00028.webp
Normal file
|
After Width: | Height: | Size: 2.3 KiB |
BIN
BaseModule/src/main/res/drawable-xxxhdpi/star_00029.webp
Normal file
|
After Width: | Height: | Size: 2.3 KiB |