1.修改图片的位置,变更到drawable,清晰度

2.修改点唱房没人隐藏火热值
This commit is contained in:
2025-09-19 18:19:20 +08:00
parent 2551f7cfbc
commit c446c7bb49
8 changed files with 12 additions and 7 deletions

View File

Before

Width:  |  Height:  |  Size: 4.0 KiB

After

Width:  |  Height:  |  Size: 4.0 KiB

View File

@@ -94,7 +94,7 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clickable="true"
android:src="@mipmap/screen"
android:src="@drawable/screen"
android:scaleType="centerCrop"
android:visibility="visible" />

View File

@@ -30,7 +30,7 @@ isBuildModule=false
android.injected.testOnly=false
APP_VERSION_NAME=1.0.2
APP_VERSION_CODE=146
APP_VERSION_CODE=147
org.gradle.jvm.toolchain.useLegacyAdapters=false
#org.gradle.java.home=C\:\\Users\\qx\\.jdks\\ms-17.0.15

View File

@@ -211,7 +211,7 @@ public class TourClubDialogFragment extends BaseMvpDialogFragment<GiftLotteryPre
if (!isDrawing) {
isDrawing = true;
prepareForNewLottery();
num = "20";
num = "100";
MvpPre.xlhChou(roomId, num);
} else {
// com.hjq.toast.ToastUtils.show("正在抽奖中...");

View File

@@ -73,7 +73,7 @@ public class RoomSingSongWheatView extends BaseWheatView {
}
updateSexIcon();
updateCharmViewVisibility(bean);
// updateCharmViewVisibility(bean);
updatePkState(bean);
}
@@ -82,7 +82,7 @@ public class RoomSingSongWheatView extends BaseWheatView {
mIvRipple.setVisibility(VISIBLE);
mTvName.setText(bean.getNickname());
ImageUtils.loadHeadCC(bean.getAvatar(), mRiv);
mCharmView.setVisibility(VISIBLE);
if (TextUtils.isEmpty(bean.getDress())) {
mIvFrame.stopAll();
mIvFrame.setVisibility(INVISIBLE);
@@ -98,7 +98,7 @@ public class RoomSingSongWheatView extends BaseWheatView {
private void handleOffState(RoomPitBean bean) {
mTvName.setText(getPitNumberText());
mCharmView.setVisibility(GONE);
if (showBoss && TextUtils.equals(WHEAT_BOSS, pitNumber)) {
mIvTagBoss.setVisibility(VISIBLE);
int resId = bean.getIs_lock() == 1 ? R.mipmap.room_ic_wheat_default_suo : R.mipmap.room_ic_wheat_default;
@@ -146,7 +146,11 @@ public class RoomSingSongWheatView extends BaseWheatView {
}
} else {
tv_time_pk.setVisibility(GONE);
if (isOn()) {
mCharmView.setVisibility(VISIBLE);
}else {
mCharmView.setVisibility(GONE);
}
}
}

View File

@@ -38,6 +38,7 @@
android:scaleType="fitCenter"
android:visibility="gone"
tools:visibility="visible"
app:layout_constraintDimensionRatio="0.99:0.99"
app:layout_constraintBottom_toBottomOf="@id/riv"
app:layout_constraintEnd_toEndOf="@id/riv"
app:layout_constraintStart_toStartOf="@id/riv"

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB