合并1
13
BaseModule/src/main/res/drawable/bg_me_gift_wall.xml
Normal file
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape android:shape="rectangle"
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<gradient
|
||||
android:startColor="#fff7d1ff"
|
||||
android:endColor="#ffe477ff"
|
||||
android:angle="0"/>
|
||||
<corners
|
||||
android:topLeftRadius="10dp"
|
||||
android:topRightRadius="10dp"
|
||||
android:bottomLeftRadius="10dp"
|
||||
android:bottomRightRadius="10dp"/>
|
||||
</shape>
|
||||
15
BaseModule/src/main/res/drawable/bg_me_wallet.xml
Normal file
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape android:shape="rectangle"
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<gradient
|
||||
|
||||
android:startColor="#FFF1C2"
|
||||
android:endColor="#FFd762"
|
||||
android:angle="0"
|
||||
/>
|
||||
<corners
|
||||
android:topLeftRadius="10dp"
|
||||
android:topRightRadius="10dp"
|
||||
android:bottomLeftRadius="10dp"
|
||||
android:bottomRightRadius="10dp"/>
|
||||
</shape>
|
||||
6
BaseModule/src/main/res/drawable/bg_r4_2a2925.xml
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape android:shape="rectangle"
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<solid android:color="#2A2925" />
|
||||
<corners android:radius="@dimen/dp_4"/>
|
||||
</shape>
|
||||
6
BaseModule/src/main/res/drawable/bg_r6_2a2a4e.xml
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape android:shape="rectangle"
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<solid android:color="#4d2a2a4e" />
|
||||
<corners android:topLeftRadius="6dp" android:topRightRadius="6dp" android:bottomLeftRadius="6dp" android:bottomRightRadius="6dp" />
|
||||
</shape>
|
||||
15
BaseModule/src/main/res/drawable/bg_r8_f8f6c7_fffff.xml
Normal file
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape android:shape="rectangle"
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<gradient
|
||||
android:type="linear"
|
||||
android:useLevel="true"
|
||||
android:startColor="#F8F6C7"
|
||||
android:endColor="#ffffffff"
|
||||
android:angle="0"/>
|
||||
<corners
|
||||
android:topLeftRadius="8dp"
|
||||
android:topRightRadius="8dp"
|
||||
android:bottomLeftRadius="8dp"
|
||||
android:bottomRightRadius="8dp"/>
|
||||
</shape>
|
||||
20
BaseModule/src/main/res/drawable/tab_indicator_bg.xml
Normal file
@@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<!-- 用item标签限制整体尺寸:maxWidth=100dp,height=10dp(与tabIndicatorHeight一致) -->
|
||||
<item
|
||||
android:height="@dimen/dp_25"
|
||||
android:gravity="center"
|
||||
android:maxWidth="@dimen/dp_20">
|
||||
<!-- 最大宽度(根据需求调整) -->
|
||||
<!-- 固定高度(与tabIndicatorHeight匹配) -->
|
||||
<!-- 图片在item内居中 -->
|
||||
<!-- 嵌套bitmap设置图片资源和缩放模式 -->
|
||||
<bitmap
|
||||
android:dither="true"
|
||||
android:scaleType="center"
|
||||
android:src="@mipmap/tab_dy" />
|
||||
<!-- 你的图片资源 -->
|
||||
<!-- 等比例缩放,确保图片在maxWidth和height内完整显示 -->
|
||||
<!-- 抗锯齿优化 -->
|
||||
</item>
|
||||
</layer-list>
|
||||
@@ -5,15 +5,13 @@
|
||||
android:id="@+id/cl_gift"
|
||||
android:layout_width="@dimen/dp_77"
|
||||
android:layout_height="@dimen/dp_119"
|
||||
android:background="@mipmap/gift_bj"
|
||||
>
|
||||
android:background="@mipmap/gift_bj">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/cl_iv_down_on"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
tools:ignore="MissingConstraints"
|
||||
>
|
||||
tools:ignore="MissingConstraints">
|
||||
|
||||
|
||||
<ImageView
|
||||
@@ -44,8 +42,7 @@
|
||||
app:layout_constraintHorizontal_bias="0.0"
|
||||
app:layout_constraintLeft_toLeftOf="parent"
|
||||
app:layout_constraintRight_toRightOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
/>
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_gift_name"
|
||||
@@ -63,10 +60,10 @@
|
||||
android:id="@+id/tv_gift_price"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="1"
|
||||
android:layout_marginBottom="@dimen/dp_5"
|
||||
android:drawableLeft="@mipmap/jinb"
|
||||
android:drawablePadding="@dimen/dp_3"
|
||||
android:layout_marginBottom="@dimen/dp_5"
|
||||
android:text="1"
|
||||
android:textColor="@color/color_FFFFBC00"
|
||||
android:textSize="11sp"
|
||||
app:layout_constraintLeft_toLeftOf="@+id/iv_gift_pic"
|
||||
@@ -79,13 +76,22 @@
|
||||
android:layout_height="@dimen/dp_13"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:background="@mipmap/text_bj"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
android:gravity="center"
|
||||
android:text="x30"
|
||||
android:textColor="@color/color_FF333333"
|
||||
android:textSize="@dimen/sp_10"
|
||||
android:visibility="gone"/>
|
||||
android:visibility="gone"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_gift_select"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:scaleType="fitCenter"
|
||||
android:src="@mipmap/noble_is_lock"
|
||||
android:visibility="gone"
|
||||
tools:visibility="visible" />
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
@@ -1,58 +1,80 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
xmlns:tools="http://schemas.android.com/tools">
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:clipChildren="false"
|
||||
android:clipToPadding="false"
|
||||
xmlns:tools="http://schemas.android.com/tools">
|
||||
|
||||
<com.xscm.moduleutil.widget.GifAvatarOvalView
|
||||
android:id="@+id/riv"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="0dp"
|
||||
android:background="@drawable/me_avatar_bg"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintDimensionRatio="1:1"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:layout_constraintWidth_percent="0.90154"
|
||||
android:src="@mipmap/default_avatar"
|
||||
app:riv_oval="true" />
|
||||
android:id="@+id/riv"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="0dp"
|
||||
android:background="@drawable/me_avatar_bg"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintDimensionRatio="1:1"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:layout_constraintWidth_percent="0.90154"
|
||||
android:src="@mipmap/default_avatar"
|
||||
app:riv_oval="true"/>
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_sex"
|
||||
android:layout_width="@dimen/dp_16"
|
||||
android:layout_height="@dimen/dp_16"
|
||||
android:background="@mipmap/nan"
|
||||
android:visibility="gone"
|
||||
tools:visibility="visible"
|
||||
app:layout_constraintBottom_toBottomOf="@id/riv"
|
||||
app:layout_constraintEnd_toEndOf="@id/riv"
|
||||
/>
|
||||
android:id="@+id/iv_sex"
|
||||
android:layout_width="@dimen/dp_16"
|
||||
android:layout_height="@dimen/dp_16"
|
||||
android:background="@mipmap/nan"
|
||||
android:visibility="gone"
|
||||
tools:visibility="visible"
|
||||
app:layout_constraintBottom_toBottomOf="@id/riv"
|
||||
app:layout_constraintEnd_toEndOf="@id/riv"
|
||||
/>
|
||||
|
||||
<com.xscm.moduleutil.widget.AvatarFrameView
|
||||
android:id="@+id/iv_frame"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="0dp"
|
||||
android:contentDescription="@null"
|
||||
android:scaleType="fitXY"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintDimensionRatio="1:1"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
android:id="@+id/iv_frame"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="0dp"
|
||||
android:contentDescription="@null"
|
||||
android:scaleType="fitXY"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintDimensionRatio="1:1"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent"/>
|
||||
|
||||
<androidx.constraintlayout.widget.Guideline
|
||||
android:id="@+id/guideline"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/dp_1"
|
||||
android:orientation="horizontal"
|
||||
app:layout_constraintGuide_percent="0.58"
|
||||
/>
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_online"
|
||||
android:layout_width="@dimen/dp_13"
|
||||
android:layout_height="@dimen/dp_13"
|
||||
android:src="@mipmap/me_online_icon"
|
||||
android:visibility="gone"
|
||||
app:layout_constraintBottom_toBottomOf="@id/riv"
|
||||
app:layout_constraintEnd_toEndOf="@id/riv"
|
||||
app:layout_constraintHorizontal_bias="0.9"
|
||||
app:layout_constraintStart_toStartOf="@id/riv"
|
||||
app:layout_constraintTop_toTopOf="@id/riv"
|
||||
app:layout_constraintVertical_bias="0.9" />
|
||||
android:id="@+id/iv_frame_bg"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0dp"
|
||||
android:contentDescription="@null"
|
||||
android:scaleType="fitXY"
|
||||
tools:src="@mipmap/me_sj"
|
||||
app:layout_constraintTop_toTopOf="@+id/guideline"
|
||||
app:layout_constraintWidth_default="spread"
|
||||
app:layout_constraintHeight_default="spread"
|
||||
/>
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_online"
|
||||
android:layout_width="@dimen/dp_13"
|
||||
android:layout_height="@dimen/dp_13"
|
||||
android:src="@mipmap/me_online_icon"
|
||||
android:visibility="gone"
|
||||
app:layout_constraintBottom_toBottomOf="@id/riv"
|
||||
app:layout_constraintEnd_toEndOf="@id/riv"
|
||||
app:layout_constraintHorizontal_bias="0.9"
|
||||
app:layout_constraintStart_toStartOf="@id/riv"
|
||||
app:layout_constraintTop_toTopOf="@id/riv"
|
||||
app:layout_constraintVertical_bias="0.9"/>
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
BIN
BaseModule/src/main/res/mipmap-hdpi/arrow_right.png
Normal file
|
After Width: | Height: | Size: 210 B |
BIN
BaseModule/src/main/res/mipmap-hdpi/beautiful.webp
Normal file
|
After Width: | Height: | Size: 896 B |
|
Before Width: | Height: | Size: 4.4 KiB |
BIN
BaseModule/src/main/res/mipmap-hdpi/cp_tx_k.webp
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
BaseModule/src/main/res/mipmap-hdpi/gift_wall_liang.webp
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
BIN
BaseModule/src/main/res/mipmap-hdpi/gift_wall_no_liang.webp
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
BaseModule/src/main/res/mipmap-hdpi/icon_no.webp
Normal file
|
After Width: | Height: | Size: 560 B |
BIN
BaseModule/src/main/res/mipmap-hdpi/icon_noble_d.webp
Normal file
|
After Width: | Height: | Size: 374 B |
BIN
BaseModule/src/main/res/mipmap-hdpi/icon_noble_gz.webp
Normal file
|
After Width: | Height: | Size: 632 B |
BIN
BaseModule/src/main/res/mipmap-hdpi/icon_noble_title.webp
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
BaseModule/src/main/res/mipmap-hdpi/icon_yes.webp
Normal file
|
After Width: | Height: | Size: 576 B |
BIN
BaseModule/src/main/res/mipmap-hdpi/me_edit.webp
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
BaseModule/src/main/res/mipmap-hdpi/me_gh.webp
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
BaseModule/src/main/res/mipmap-hdpi/me_help.webp
Normal file
|
After Width: | Height: | Size: 676 B |
BIN
BaseModule/src/main/res/mipmap-hdpi/me_home.webp
Normal file
|
After Width: | Height: | Size: 734 B |
BIN
BaseModule/src/main/res/mipmap-hdpi/me_income.webp
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
BaseModule/src/main/res/mipmap-hdpi/me_invitation.webp
Normal file
|
After Width: | Height: | Size: 684 B |
BIN
BaseModule/src/main/res/mipmap-hdpi/me_my_bag.webp
Normal file
|
After Width: | Height: | Size: 662 B |
BIN
BaseModule/src/main/res/mipmap-hdpi/me_noble_bj.webp
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
BaseModule/src/main/res/mipmap-hdpi/me_noble_image.webp
Normal file
|
After Width: | Height: | Size: 17 KiB |
BIN
BaseModule/src/main/res/mipmap-hdpi/me_noble_no.webp
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
BaseModule/src/main/res/mipmap-hdpi/me_noble_xf.webp
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
BaseModule/src/main/res/mipmap-hdpi/me_opinion.webp
Normal file
|
After Width: | Height: | Size: 514 B |
BIN
BaseModule/src/main/res/mipmap-hdpi/me_recharge.webp
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
BaseModule/src/main/res/mipmap-hdpi/me_setting.webp
Normal file
|
After Width: | Height: | Size: 952 B |
BIN
BaseModule/src/main/res/mipmap-hdpi/me_show_store.webp
Normal file
|
After Width: | Height: | Size: 826 B |
BIN
BaseModule/src/main/res/mipmap-hdpi/me_sj.webp
Normal file
|
After Width: | Height: | Size: 6.2 KiB |
BIN
BaseModule/src/main/res/mipmap-hdpi/me_test.webp
Normal file
|
After Width: | Height: | Size: 626 B |
BIN
BaseModule/src/main/res/mipmap-hdpi/me_zy.webp
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
BaseModule/src/main/res/mipmap-hdpi/my_dan.webp
Normal file
|
After Width: | Height: | Size: 756 B |
BIN
BaseModule/src/main/res/mipmap-hdpi/my_noblesse.webp
Normal file
|
After Width: | Height: | Size: 4.1 KiB |
BIN
BaseModule/src/main/res/mipmap-hdpi/noble_cz_ts.webp
Normal file
|
After Width: | Height: | Size: 744 B |
BIN
BaseModule/src/main/res/mipmap-hdpi/noble_details_bj.webp
Normal file
|
After Width: | Height: | Size: 6.1 KiB |
BIN
BaseModule/src/main/res/mipmap-hdpi/noble_details_tq.webp
Normal file
|
After Width: | Height: | Size: 5.7 KiB |
BIN
BaseModule/src/main/res/mipmap-hdpi/noble_duib.webp
Normal file
|
After Width: | Height: | Size: 10 KiB |
BIN
BaseModule/src/main/res/mipmap-hdpi/noble_h_kt.webp
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
BaseModule/src/main/res/mipmap-hdpi/noble_is_lock.webp
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
BaseModule/src/main/res/mipmap-hdpi/noble_kt.webp
Normal file
|
After Width: | Height: | Size: 7.1 KiB |
BIN
BaseModule/src/main/res/mipmap-hdpi/noble_ljkt.webp
Normal file
|
After Width: | Height: | Size: 2.3 KiB |
BIN
BaseModule/src/main/res/mipmap-hdpi/noble_ljsj.webp
Normal file
|
After Width: | Height: | Size: 2.3 KiB |
BIN
BaseModule/src/main/res/mipmap-hdpi/noble_seccer.webp
Normal file
|
After Width: | Height: | Size: 2.5 KiB |
BIN
BaseModule/src/main/res/mipmap-hdpi/noble_sj.webp
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
BaseModule/src/main/res/mipmap-hdpi/noble_xf.webp
Normal file
|
After Width: | Height: | Size: 2.4 KiB |
BIN
BaseModule/src/main/res/mipmap-hdpi/noble_yxq.webp
Normal file
|
After Width: | Height: | Size: 508 B |
BIN
BaseModule/src/main/res/mipmap-hdpi/noble_zf_bj.webp
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
BIN
BaseModule/src/main/res/mipmap-hdpi/personality.webp
Normal file
|
After Width: | Height: | Size: 598 B |
|
Before Width: | Height: | Size: 3.9 KiB |
BIN
BaseModule/src/main/res/mipmap-hdpi/ranking_user_cp_k.webp
Normal file
|
After Width: | Height: | Size: 948 B |
|
Before Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 730 B |
BIN
BaseModule/src/main/res/mipmap-xhdpi/arrow_right.png
Normal file
|
After Width: | Height: | Size: 176 B |
BIN
BaseModule/src/main/res/mipmap-xhdpi/beautiful.webp
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 5.8 KiB |
BIN
BaseModule/src/main/res/mipmap-xhdpi/cp_tx_k.webp
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
BIN
BaseModule/src/main/res/mipmap-xhdpi/gift_wall_liang.webp
Normal file
|
After Width: | Height: | Size: 3.2 KiB |
BIN
BaseModule/src/main/res/mipmap-xhdpi/gift_wall_no_liang.webp
Normal file
|
After Width: | Height: | Size: 2.5 KiB |
|
Before Width: | Height: | Size: 365 B |
BIN
BaseModule/src/main/res/mipmap-xhdpi/hourly_d.webp
Normal file
|
After Width: | Height: | Size: 212 B |
|
Before Width: | Height: | Size: 16 KiB |
BIN
BaseModule/src/main/res/mipmap-xhdpi/hourly_xlh_status.webp
Normal file
|
After Width: | Height: | Size: 5.6 KiB |
BIN
BaseModule/src/main/res/mipmap-xhdpi/icon_no.webp
Normal file
|
After Width: | Height: | Size: 590 B |
BIN
BaseModule/src/main/res/mipmap-xhdpi/icon_noble_d.webp
Normal file
|
After Width: | Height: | Size: 404 B |
BIN
BaseModule/src/main/res/mipmap-xhdpi/icon_noble_gz.webp
Normal file
|
After Width: | Height: | Size: 688 B |
BIN
BaseModule/src/main/res/mipmap-xhdpi/icon_noble_title.webp
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
BaseModule/src/main/res/mipmap-xhdpi/icon_yes.webp
Normal file
|
After Width: | Height: | Size: 674 B |
BIN
BaseModule/src/main/res/mipmap-xhdpi/me_edit.webp
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
BaseModule/src/main/res/mipmap-xhdpi/me_gh.webp
Normal file
|
After Width: | Height: | Size: 2.9 KiB |
BIN
BaseModule/src/main/res/mipmap-xhdpi/me_help.webp
Normal file
|
After Width: | Height: | Size: 628 B |
BIN
BaseModule/src/main/res/mipmap-xhdpi/me_home.webp
Normal file
|
After Width: | Height: | Size: 934 B |
BIN
BaseModule/src/main/res/mipmap-xhdpi/me_income.webp
Normal file
|
After Width: | Height: | Size: 996 B |
BIN
BaseModule/src/main/res/mipmap-xhdpi/me_invitation.webp
Normal file
|
After Width: | Height: | Size: 644 B |
BIN
BaseModule/src/main/res/mipmap-xhdpi/me_my_bag.webp
Normal file
|
After Width: | Height: | Size: 566 B |
BIN
BaseModule/src/main/res/mipmap-xhdpi/me_noble_bj.webp
Normal file
|
After Width: | Height: | Size: 25 KiB |
BIN
BaseModule/src/main/res/mipmap-xhdpi/me_noble_image.webp
Normal file
|
After Width: | Height: | Size: 28 KiB |
BIN
BaseModule/src/main/res/mipmap-xhdpi/me_noble_no.webp
Normal file
|
After Width: | Height: | Size: 2.3 KiB |
BIN
BaseModule/src/main/res/mipmap-xhdpi/me_noble_xf.webp
Normal file
|
After Width: | Height: | Size: 3.6 KiB |
BIN
BaseModule/src/main/res/mipmap-xhdpi/me_opinion.webp
Normal file
|
After Width: | Height: | Size: 402 B |
BIN
BaseModule/src/main/res/mipmap-xhdpi/me_recharge.webp
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
BaseModule/src/main/res/mipmap-xhdpi/me_setting.webp
Normal file
|
After Width: | Height: | Size: 794 B |
BIN
BaseModule/src/main/res/mipmap-xhdpi/me_show_store.webp
Normal file
|
After Width: | Height: | Size: 916 B |
BIN
BaseModule/src/main/res/mipmap-xhdpi/me_sj.webp
Normal file
|
After Width: | Height: | Size: 9.2 KiB |
BIN
BaseModule/src/main/res/mipmap-xhdpi/me_test.webp
Normal file
|
After Width: | Height: | Size: 596 B |
BIN
BaseModule/src/main/res/mipmap-xhdpi/me_zy.webp
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
BaseModule/src/main/res/mipmap-xhdpi/my_dan.webp
Normal file
|
After Width: | Height: | Size: 726 B |
BIN
BaseModule/src/main/res/mipmap-xhdpi/my_noblesse.webp
Normal file
|
After Width: | Height: | Size: 6.7 KiB |
BIN
BaseModule/src/main/res/mipmap-xhdpi/noble_cz_ts.webp
Normal file
|
After Width: | Height: | Size: 754 B |
BIN
BaseModule/src/main/res/mipmap-xhdpi/noble_details_bj.webp
Normal file
|
After Width: | Height: | Size: 9.5 KiB |
BIN
BaseModule/src/main/res/mipmap-xhdpi/noble_details_tq.webp
Normal file
|
After Width: | Height: | Size: 7.7 KiB |
BIN
BaseModule/src/main/res/mipmap-xhdpi/noble_duib.webp
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
BaseModule/src/main/res/mipmap-xhdpi/noble_h_kt.webp
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
BaseModule/src/main/res/mipmap-xhdpi/noble_is_lock.webp
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
BaseModule/src/main/res/mipmap-xhdpi/noble_kt.webp
Normal file
|
After Width: | Height: | Size: 4.8 KiB |