xxy_fragment_chat.xml
2.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/xxy_color_ffffff">
<android.support.v7.widget.RecyclerView
android:id="@+id/xxy_chat_content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="@dimen/xxy_dip_50"
android:divider="@null"
android:dividerHeight="0dp"
android:paddingStart="@dimen/xxy_dip_5"
android:paddingTop="@dimen/xxy_dip_15"
android:paddingEnd="@dimen/xxy_dip_5"
android:paddingBottom="@dimen/xxy_dip_15" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="@dimen/xxy_dip_50"
android:layout_alignParentBottom="true"
android:background="#f1f1f1"
android:orientation="horizontal"
android:paddingStart="@dimen/xxy_dip_15"
android:paddingTop="@dimen/xxy_dip_8"
android:paddingEnd="@dimen/xxy_dip_15"
android:paddingBottom="@dimen/xxy_dip_8">
<EditText
android:id="@+id/xxy_chat_input_msg"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_weight="1"
android:background="@drawable/xxy_chat_input_box_white_bg"
android:inputType="text"
android:padding="@dimen/xxy_dip_5"
android:textColor="@color/xxy_color_333333"
android:textSize="@dimen/xxy_sp_14" />
<Button
android:id="@+id/xxy_chat_send_msg"
android:layout_width="@dimen/xxy_dip_55"
android:layout_height="@dimen/xxy_dip_30"
android:layout_gravity="center_vertical"
android:layout_marginStart="@dimen/xxy_dip_15"
android:background="@drawable/xxy_btn_public_click_state"
android:text="@string/xxy_chat_send"
android:textColor="@color/xxy_color_ffffff"
android:textSize="@dimen/xxy_sp_14" />
</LinearLayout>
</RelativeLayout>