incloud_room_edit.xml
2.15 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
54
55
56
57
58
59
60
61
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/live_edit_lina"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:focusable="true"
android:focusableInTouchMode="true"
android:orientation="vertical"
android:paddingBottom="3dp" >
<LinearLayout
android:id="@+id/relativeLayout1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
>
<CheckBox
android:id="@+id/barrage_switch"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:layout_marginLeft="8dip"
android:button="@null"
android:gravity="center"
tools:ignore="NewApi"
android:background="@drawable/live_msg_check"
/>
<com.ivt.android.me.ui.myview.CustomEditText
android:id="@+id/edit_input"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="5"
android:alpha="0.5"
android:background="@drawable/barrage_edit"
android:gravity="center_vertical"
android:hint="@string/mulit_edit_hint"
android:imeOptions="normal"
android:maxLength="100"
android:paddingLeft="8dp"
android:singleLine="true"
android:textColor="#000000"
android:textColorHint="#8c8c8c"
android:textSize="14sp" />
<Button
android:id="@+id/live_bt_send"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:layout_marginRight="8dip"
android:background="@drawable/barrage_send"
android:gravity="center"
android:text="发送"
android:textColor="@color/wite"
android:textSize="13sp" />
</LinearLayout>
</RelativeLayout>