6.5.4礼物冠名
This commit is contained in:
parent
60ce5572cf
commit
9bce235817
@ -23,6 +23,9 @@ public class GiftWallGiftDetail extends BaseModel {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public String getUserNicename() {
|
public String getUserNicename() {
|
||||||
|
if (userNicename.length() > 5) {
|
||||||
|
userNicename = userNicename.substring(0, 5) + "...";
|
||||||
|
}
|
||||||
return userNicename;
|
return userNicename;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -128,15 +128,21 @@
|
|||||||
android:text="@string/regular_bubble"
|
android:text="@string/regular_bubble"
|
||||||
android:textColor="#6F43FF"
|
android:textColor="#6F43FF"
|
||||||
android:textSize="12sp" />
|
android:textSize="12sp" />
|
||||||
|
<FrameLayout
|
||||||
<androidx.recyclerview.widget.RecyclerView
|
|
||||||
android:id="@+id/achievement_img_list"
|
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="60dp"
|
android:layout_height="60dp"
|
||||||
android:layout_marginStart="8dp"
|
android:layout_marginStart="8dp"
|
||||||
android:background="@drawable/background_achievement_details_list"
|
|
||||||
android:layout_marginTop="6dp"
|
android:layout_marginTop="6dp"
|
||||||
android:layout_marginEnd="8dp" />
|
android:background="@drawable/background_achievement_details_list"
|
||||||
|
android:layout_marginEnd="8dp">
|
||||||
|
<androidx.recyclerview.widget.RecyclerView
|
||||||
|
android:id="@+id/achievement_img_list"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
android:layout_height="match_parent" />
|
||||||
|
</FrameLayout>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/gift_details_btn2"
|
android:id="@+id/gift_details_btn2"
|
||||||
|
@ -9,9 +9,9 @@ ext {
|
|||||||
]
|
]
|
||||||
manifestPlaceholders = [
|
manifestPlaceholders = [
|
||||||
//正式、
|
//正式、
|
||||||
serverHost : "https://napi.yaoulive.com",
|
// serverHost : "https://napi.yaoulive.com",
|
||||||
// 测试
|
// 测试
|
||||||
// serverHost : "https://ceshi.yaoulive.com",
|
serverHost : "https://ceshi.yaoulive.com",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -1102,7 +1102,7 @@ public class LiveGiftPopup extends AbsDialogFragment {
|
|||||||
if (goldText != null) {
|
if (goldText != null) {
|
||||||
goldText.setText(goldCoin);
|
goldText.setText(goldCoin);
|
||||||
}
|
}
|
||||||
if (mGiftBean.getType() == LiveGiftBean2.TYPE_NORMAL && !mGiftBean.getSwf().contains("svga")) {
|
if (!mGiftBean.getSwf().contains("svga")) {
|
||||||
showLianBtn();
|
showLianBtn();
|
||||||
}
|
}
|
||||||
if (mGiftBean.getType() == 7) {
|
if (mGiftBean.getType() == 7) {
|
||||||
|
Loading…
Reference in New Issue
Block a user