-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinclude_chat_add.xml
41 lines (39 loc) · 1.44 KB
/
include_chat_add.xml
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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:weightSum="4"
android:layout_marginTop="10dp"
android:layout_marginBottom="10dp"
android:orientation="horizontal" >
<TextView
android:id="@+id/tv_picture"
android:layout_width="0dp"
android:layout_weight="1.0"
android:layout_height="wrap_content"
android:drawablePadding="10dp"
android:gravity="center"
android:drawableTop="@drawable/btn_chat_add_picture_selector"
android:text="@string/picture"
/>
<TextView
android:id="@+id/tv_camera"
android:layout_width="0dp"
android:layout_weight="1.0"
android:drawablePadding="10dp"
android:gravity="center"
android:layout_height="wrap_content"
android:drawableTop="@drawable/btn_chat_add_camera_selector"
android:text="@string/camera"
/>
<TextView
android:id="@+id/tv_location"
android:layout_width="0dp"
android:layout_weight="1.0"
android:drawablePadding="10dp"
android:gravity="center"
android:layout_height="wrap_content"
android:drawableTop="@drawable/btn_chat_add_location_selector"
android:text="@string/location"
/>
</LinearLayout>