高等级入场提示

This commit is contained in:
18401019693
2023-03-27 14:22:29 +08:00
parent 62e2b93bd5
commit 86c5334ab4
17 changed files with 312 additions and 17 deletions

View File

@@ -0,0 +1,48 @@
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/enter_room_bg"
android:layout_width="wrap_content"
android:layout_height="24dp"
android:orientation="horizontal">
<LinearLayout
android:id="@+id/enter_room_leave2"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_marginTop="2dp"
android:layout_marginBottom="2dp"
android:layout_gravity="center_vertical"
android:layout_marginStart="6dp"
android:gravity="center_vertical">
<ImageView
android:id="@+id/image_view"
android:layout_width="18dp"
android:layout_height="18dp"
android:scaleType="centerCrop" />
<com.yunbao.common.views.weight.ClipPathCircleImage
android:id="@+id/image_avatar"
android:layout_width="12dp"
android:layout_height="12dp"
android:layout_marginStart="4dp"
android:scaleType="centerCrop" />
<TextView
android:id="@+id/user_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="4dp"
android:layout_marginEnd="6dp"
android:text="@string/come_hint"
android:textColor="#fff"
android:textSize="10sp" />
</LinearLayout>
</FrameLayout>

View File

@@ -6,7 +6,6 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="45dp"
android:paddingTop="15dp">
@@ -215,7 +214,15 @@
</LinearLayout>
<include
android:id="@+id/enter_room_leave"
layout="@layout/view_enter_room_leave"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@id/chat_recyclerView"
android:layout_marginStart="3dp"
android:layout_marginBottom="-350dp"
android:visibility="gone" />
</RelativeLayout>
<FrameLayout