2024-01-10 15:48:10 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="51dp"
|
|
|
|
android:background="@drawable/background_sud_game_input">
|
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/text_message"
|
2024-01-12 15:16:40 +08:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_marginEnd="100dp"
|
2024-01-10 15:48:10 +08:00
|
|
|
android:layout_height="38dp"
|
|
|
|
android:layout_marginStart="15dp"
|
2024-01-12 15:16:40 +08:00
|
|
|
android:paddingStart="8dp"
|
|
|
|
android:layout_gravity="center_vertical"
|
2024-01-10 15:48:10 +08:00
|
|
|
android:background="@drawable/background_sud_game_input_edit_text"
|
|
|
|
android:hint="@string/live_say_something"
|
|
|
|
android:textColorHint="@color/gray3" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/send"
|
|
|
|
android:layout_width="60dp"
|
|
|
|
android:layout_height="38dp"
|
|
|
|
android:layout_gravity="end|center_vertical"
|
|
|
|
android:layout_marginEnd="20dp"
|
|
|
|
android:background="@mipmap/icon_send_game"
|
|
|
|
android:gravity="center"
|
|
|
|
android:text="@string/send"
|
|
|
|
android:textColor="@color/white"
|
|
|
|
android:textSize="16sp" />
|
|
|
|
</FrameLayout>
|