1:添加签约房的按钮
2:我的家族和的身价页面完成 3:个性装扮降身卡完成
@@ -16,12 +16,14 @@ public class RoomSettingBean implements MultiItemEntity {
|
||||
public static final int QXRoomSettingTypeRoomTypeBoy = 12;
|
||||
/// 女神房
|
||||
public static final int QXRoomSettingTypeRoomTypeGirl = 13;
|
||||
///交友 房
|
||||
/// 交友 房
|
||||
public static final int QXRoomSettingTypeRoomTypeJiaoy = 27;
|
||||
//互娱
|
||||
public static final int QXRoomSettingTypeRoomTypeHUYU = 28;
|
||||
//练歌房
|
||||
public static final int QXRoomSettingTypeRoomTypeLianG = 31;
|
||||
//签约
|
||||
public static final int QXRoomSettingTypeRoomTypeSIGNONTRACT = 32;
|
||||
|
||||
/// 常用工具
|
||||
/// 房间补贴
|
||||
@@ -70,7 +72,7 @@ public class RoomSettingBean implements MultiItemEntity {
|
||||
private boolean select;//是否选中
|
||||
|
||||
|
||||
public RoomSettingBean(String name, String icon, String selectName, String selectIcon, int type, int read, boolean isSelected, boolean status,boolean select) {
|
||||
public RoomSettingBean(String name, String icon, String selectName, String selectIcon, int type, int read, boolean isSelected, boolean status, boolean select) {
|
||||
this.name = name;
|
||||
this.icon = icon;
|
||||
this.selectName = selectName;
|
||||
@@ -86,6 +88,7 @@ public class RoomSettingBean implements MultiItemEntity {
|
||||
public int getItemType() {
|
||||
return itemType;
|
||||
}
|
||||
|
||||
public void updateItemType() {
|
||||
if (type == -1) { // 特殊值表示标题
|
||||
this.itemType = ITEM_TYPE_DEFAULT;
|
||||
|
||||
@@ -15,11 +15,13 @@ public class ZhuangBanShangChengBean {
|
||||
private String is_perpetual;
|
||||
private String special_num ;//靓号
|
||||
private String title ;//装扮名称
|
||||
private String type ;//类型,顶部的头部选择
|
||||
private String type="" ;//类型,顶部的头部选择
|
||||
private String remaining_day ;//价格
|
||||
private String base_image ;//显示图片
|
||||
private String play_image;//播放图像
|
||||
private boolean is_select = false;
|
||||
private int num ;//数量
|
||||
private String ext_value="" ;//这是使用降身卡的时候,返回的参数,对应的是降身卡的前面,类似10%
|
||||
|
||||
public boolean isIs_select() {
|
||||
return is_select;
|
||||
|
||||
@@ -15,8 +15,8 @@ enum class RoomType(
|
||||
DATING("交友", 1,3, 4, 8), // 1、3、4、8 均对应交友
|
||||
BLACK_ROOM("小黑屋", 6),
|
||||
JUKEBOX("点唱", 9),
|
||||
MUTUAL_ENTERTAINMENT("互娱", 17),
|
||||
SIGN_CONTRACT("签约", 7);
|
||||
MUTUAL_ENTERTAINMENT("互娱", 7),
|
||||
SIGN_CONTRACT("签约", 10);
|
||||
|
||||
|
||||
companion object {
|
||||
|
||||
@@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<gradient
|
||||
android:angle="180"
|
||||
android:startColor="#C5FFC9"
|
||||
android:centerColor="#F9E9FF"
|
||||
android:endColor="#C7ECFA"
|
||||
android:type="linear"
|
||||
android:useLevel="true" />
|
||||
<corners
|
||||
android:bottomLeftRadius="12dp"
|
||||
android:bottomRightRadius="12dp"
|
||||
android:topLeftRadius="12dp"
|
||||
android:topRightRadius="12dp" />
|
||||
</shape>
|
||||
@@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<gradient
|
||||
android:angle="180"
|
||||
android:centerColor="#fff9e9ff"
|
||||
android:endColor="#ffc7d3fa"
|
||||
android:startColor="#fffffac5"
|
||||
android:type="linear"
|
||||
android:useLevel="true" />
|
||||
<corners
|
||||
android:bottomLeftRadius="12dp"
|
||||
android:bottomRightRadius="12dp"
|
||||
android:topLeftRadius="12dp"
|
||||
android:topRightRadius="12dp" />
|
||||
</shape>
|
||||
@@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<gradient
|
||||
android:angle="90"
|
||||
android:startColor="#FFDAED"
|
||||
android:centerColor="#ffd9ffe1"
|
||||
android:endColor="#F3FF98"
|
||||
android:type="linear"
|
||||
android:useLevel="true" />
|
||||
<corners
|
||||
android:bottomLeftRadius="4dp"
|
||||
android:bottomRightRadius="4dp"
|
||||
android:topLeftRadius="4dp"
|
||||
android:topRightRadius="4dp" />
|
||||
</shape>
|
||||
@@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<gradient
|
||||
android:angle="180"
|
||||
android:startColor="#C2EBFF"
|
||||
android:centerColor="#fff5d2f2"
|
||||
android:endColor="#FFF6F0"
|
||||
android:type="linear"
|
||||
android:useLevel="true" />
|
||||
<corners
|
||||
android:bottomLeftRadius="6dp"
|
||||
android:bottomRightRadius="6dp"
|
||||
android:topLeftRadius="6dp"
|
||||
android:topRightRadius="6dp" />
|
||||
</shape>
|
||||
10
BaseModule/src/main/res/drawable/bg_r8_top_aeedff.xml
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape android:shape="rectangle"
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<solid android:color="#AEEDFF"/>
|
||||
<corners
|
||||
android:topLeftRadius="8dp"
|
||||
android:topRightRadius="8dp"
|
||||
android:bottomLeftRadius="0dp"
|
||||
android:bottomRightRadius="0dp"/>
|
||||
</shape>
|
||||
16
BaseModule/src/main/res/drawable/tv_border_background.xml
Normal file
@@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
|
||||
<!-- 背景填充颜色,如果你不需要内部填充颜色,可以设置为透明 -->
|
||||
<solid android:color="@color/white" />
|
||||
|
||||
<!-- 边框设置 -->
|
||||
<stroke
|
||||
android:width="0.5dp"
|
||||
android:color="#9FF9DF" />
|
||||
|
||||
<!-- 圆角设置 -->
|
||||
<corners android:radius="99dp" /> <!-- 你可以根据需要调整圆角大小 -->
|
||||
|
||||
</shape>
|
||||
|
Before Width: | Height: | Size: 7.1 KiB |
BIN
BaseModule/src/main/res/mipmap-hdpi/icon_apply_for_mai.webp
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
|
Before Width: | Height: | Size: 8.7 KiB |
BIN
BaseModule/src/main/res/mipmap-hdpi/icon_contract.webp
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
|
Before Width: | Height: | Size: 35 KiB |
BIN
BaseModule/src/main/res/mipmap-hdpi/icon_cp_anim_bg.webp
Normal file
|
After Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 5.0 KiB |
BIN
BaseModule/src/main/res/mipmap-hdpi/icon_gold_bg.webp
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
|
Before Width: | Height: | Size: 668 B |
BIN
BaseModule/src/main/res/mipmap-hdpi/icon_heart_left_bg.webp
Normal file
|
After Width: | Height: | Size: 304 B |
|
Before Width: | Height: | Size: 2.2 KiB |
BIN
BaseModule/src/main/res/mipmap-hdpi/icon_host_top_tips_bg.webp
Normal file
|
After Width: | Height: | Size: 784 B |
|
Before Width: | Height: | Size: 16 KiB |
BIN
BaseModule/src/main/res/mipmap-hdpi/icon_mentor_left_bg.webp
Normal file
|
After Width: | Height: | Size: 4.3 KiB |
|
Before Width: | Height: | Size: 51 KiB |
BIN
BaseModule/src/main/res/mipmap-hdpi/icon_mentor_right_bg.webp
Normal file
|
After Width: | Height: | Size: 10 KiB |
|
Before Width: | Height: | Size: 282 KiB |
BIN
BaseModule/src/main/res/mipmap-hdpi/icon_mentor_ship_bg.webp
Normal file
|
After Width: | Height: | Size: 23 KiB |
|
Before Width: | Height: | Size: 9.1 KiB |
BIN
BaseModule/src/main/res/mipmap-hdpi/icon_show_alent.webp
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
|
Before Width: | Height: | Size: 3.2 KiB |
BIN
BaseModule/src/main/res/mipmap-hdpi/icon_sign_contract.webp
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 758 B |
BIN
BaseModule/src/main/res/mipmap-hdpi/icon_time.webp
Normal file
|
After Width: | Height: | Size: 414 B |
BIN
BaseModule/src/main/res/mipmap-hdpi/members_offline.webp
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
BaseModule/src/main/res/mipmap-hdpi/members_online.webp
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 10 KiB |
BIN
BaseModule/src/main/res/mipmap-xhdpi/icon_apply_for_mai.webp
Normal file
|
After Width: | Height: | Size: 2.3 KiB |
|
Before Width: | Height: | Size: 13 KiB |
BIN
BaseModule/src/main/res/mipmap-xhdpi/icon_contract.webp
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
|
Before Width: | Height: | Size: 58 KiB |
BIN
BaseModule/src/main/res/mipmap-xhdpi/icon_cp_anim_bg.webp
Normal file
|
After Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 7.7 KiB |
BIN
BaseModule/src/main/res/mipmap-xhdpi/icon_gold_bg.webp
Normal file
|
After Width: | Height: | Size: 2.3 KiB |
|
Before Width: | Height: | Size: 951 B |
BIN
BaseModule/src/main/res/mipmap-xhdpi/icon_heart_left_bg.webp
Normal file
|
After Width: | Height: | Size: 376 B |
|
Before Width: | Height: | Size: 3.0 KiB |
BIN
BaseModule/src/main/res/mipmap-xhdpi/icon_host_top_tips_bg.webp
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
|
Before Width: | Height: | Size: 26 KiB |
BIN
BaseModule/src/main/res/mipmap-xhdpi/icon_mentor_left_bg.webp
Normal file
|
After Width: | Height: | Size: 7.0 KiB |
|
Before Width: | Height: | Size: 85 KiB |
BIN
BaseModule/src/main/res/mipmap-xhdpi/icon_mentor_right_bg.webp
Normal file
|
After Width: | Height: | Size: 17 KiB |
|
Before Width: | Height: | Size: 496 KiB |
BIN
BaseModule/src/main/res/mipmap-xhdpi/icon_mentor_ship_bg.webp
Normal file
|
After Width: | Height: | Size: 29 KiB |
|
Before Width: | Height: | Size: 13 KiB |
BIN
BaseModule/src/main/res/mipmap-xhdpi/icon_show_alent.webp
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
|
Before Width: | Height: | Size: 4.3 KiB |
BIN
BaseModule/src/main/res/mipmap-xhdpi/icon_sign_contract.webp
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 1.1 KiB |
BIN
BaseModule/src/main/res/mipmap-xhdpi/icon_time.webp
Normal file
|
After Width: | Height: | Size: 452 B |
BIN
BaseModule/src/main/res/mipmap-xhdpi/members_offline.webp
Normal file
|
After Width: | Height: | Size: 2.4 KiB |
BIN
BaseModule/src/main/res/mipmap-xhdpi/members_online.webp
Normal file
|
After Width: | Height: | Size: 2.4 KiB |
|
Before Width: | Height: | Size: 20 KiB |
BIN
BaseModule/src/main/res/mipmap-xxhdpi/icon_apply_for_mai.webp
Normal file
|
After Width: | Height: | Size: 3.7 KiB |
|
Before Width: | Height: | Size: 25 KiB |
BIN
BaseModule/src/main/res/mipmap-xxhdpi/icon_contract.webp
Normal file
|
After Width: | Height: | Size: 4.3 KiB |
|
Before Width: | Height: | Size: 136 KiB |
BIN
BaseModule/src/main/res/mipmap-xxhdpi/icon_cp_anim_bg.webp
Normal file
|
After Width: | Height: | Size: 39 KiB |
|
Before Width: | Height: | Size: 15 KiB |
BIN
BaseModule/src/main/res/mipmap-xxhdpi/icon_gold_bg.webp
Normal file
|
After Width: | Height: | Size: 3.9 KiB |
|
Before Width: | Height: | Size: 1.5 KiB |
BIN
BaseModule/src/main/res/mipmap-xxhdpi/icon_heart_left_bg.webp
Normal file
|
After Width: | Height: | Size: 558 B |
|
Before Width: | Height: | Size: 5.5 KiB |
BIN
BaseModule/src/main/res/mipmap-xxhdpi/icon_host_top_tips_bg.webp
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
|
Before Width: | Height: | Size: 52 KiB |
BIN
BaseModule/src/main/res/mipmap-xxhdpi/icon_mentor_left_bg.webp
Normal file
|
After Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 188 KiB |
BIN
BaseModule/src/main/res/mipmap-xxhdpi/icon_mentor_right_bg.webp
Normal file
|
After Width: | Height: | Size: 38 KiB |
|
Before Width: | Height: | Size: 998 KiB |
BIN
BaseModule/src/main/res/mipmap-xxhdpi/icon_mentor_ship_bg.webp
Normal file
|
After Width: | Height: | Size: 51 KiB |
|
Before Width: | Height: | Size: 25 KiB |
BIN
BaseModule/src/main/res/mipmap-xxhdpi/icon_show_alent.webp
Normal file
|
After Width: | Height: | Size: 4.6 KiB |
|
Before Width: | Height: | Size: 8.8 KiB |
BIN
BaseModule/src/main/res/mipmap-xxhdpi/icon_sign_contract.webp
Normal file
|
After Width: | Height: | Size: 2.7 KiB |
|
Before Width: | Height: | Size: 1.5 KiB |
BIN
BaseModule/src/main/res/mipmap-xxhdpi/icon_time.webp
Normal file
|
After Width: | Height: | Size: 732 B |
BIN
BaseModule/src/main/res/mipmap-xxhdpi/members_offline.webp
Normal file
|
After Width: | Height: | Size: 4.0 KiB |
BIN
BaseModule/src/main/res/mipmap-xxhdpi/members_online.webp
Normal file
|
After Width: | Height: | Size: 4.1 KiB |
@@ -4,6 +4,7 @@
|
||||
<string name="voice_title">羽声语音</string>
|
||||
<string name="circle_title">语圈</string>
|
||||
<string name="wallet">钱包</string>
|
||||
<string name="net_worth">身价</string>
|
||||
<string name="dan">等级</string>
|
||||
<string name="guild">公会中心</string>
|
||||
<string name="dressup">个性装扮</string>
|
||||
@@ -12,6 +13,7 @@
|
||||
<string name="daily">每日任务</string>
|
||||
<string name="news">消息</string>
|
||||
<string name="setting_name">设置</string>
|
||||
<string name="me_family">我的家族</string>
|
||||
|
||||
<string name="tab_text_2">未点亮</string>
|
||||
<string name="tab_text_1">已点亮</string>
|
||||
|
||||