141 lines
5.2 KiB
XML
141 lines
5.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout 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="650dp"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:background="@drawable/bg_live_sud_list"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="40dp"
|
|
android:layout_marginTop="10dp"
|
|
android:gravity="center_vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/game_title"
|
|
android:visibility="gone"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="15dp"
|
|
android:text="@string/interactive_game_create_room"
|
|
android:textColor="@color/white"
|
|
android:textSize="16sp"
|
|
android:textStyle="bold" />
|
|
|
|
<LinearLayout
|
|
android:layout_marginLeft="10dp"
|
|
android:layout_width="175dp"
|
|
android:layout_height="50dp"
|
|
android:padding="2dp"
|
|
android:background="@drawable/dialog_live_sud_game_name_bg"
|
|
android:gravity="center_vertical">
|
|
|
|
<com.makeramen.roundedimageview.RoundedImageView
|
|
android:id="@+id/avatar"
|
|
android:layout_width="20dp"
|
|
android:layout_height="20dp"
|
|
android:layout_marginStart="6dp"
|
|
android:scaleType="centerCrop"
|
|
android:src="@mipmap/live_dialog_top_game_icon"
|
|
android:visibility="visible"
|
|
tools:visibility="visible"
|
|
app:riv_oval="true" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginStart="10dp"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="4dp">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/interactive_game_create_room_name"
|
|
android:textColor="@color/white"
|
|
android:textSize="12sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/room_name"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:ellipsize="end"
|
|
android:maxWidth="98dp"
|
|
android:singleLine="true"
|
|
android:textColor="@color/white"
|
|
android:textSize="12sp" />
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="4dp">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/interactive_game_create_room_number"
|
|
android:textColor="@color/white"
|
|
android:textSize="12sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/room_number"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="@color/white"
|
|
android:textSize="12sp" />
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
|
|
<View
|
|
android:layout_width="0dp"
|
|
android:layout_height="1dp"
|
|
android:layout_weight="1" />
|
|
|
|
<ImageView
|
|
android:id="@+id/sud_history"
|
|
android:layout_width="30dp"
|
|
android:layout_height="30dp"
|
|
android:layout_marginEnd="14dp"
|
|
android:src="@mipmap/icon_sud_history_live_new" />
|
|
|
|
<ImageView
|
|
android:id="@+id/min_game"
|
|
android:layout_width="30dp"
|
|
android:layout_height="30dp"
|
|
android:layout_marginEnd="16dp"
|
|
android:src="@mipmap/icon_min_game_new"
|
|
android:visibility="visible" />
|
|
|
|
<ImageView
|
|
android:id="@+id/exit"
|
|
android:layout_width="30dp"
|
|
android:layout_height="30dp"
|
|
android:background="@mipmap/bg_live_sud_game_back_new2"
|
|
android:gravity="center"
|
|
android:textColor="#FFFFFF"
|
|
android:textSize="8sp" />
|
|
</LinearLayout>
|
|
|
|
<RelativeLayout
|
|
android:layout_marginTop="10dp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<FrameLayout
|
|
android:id="@+id/game_container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" />
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
</LinearLayout> |