message_attachment_options.xml 1.48 KB
Newer Older
1 2 3 4 5 6 7
<?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:background="@drawable/style_attachment_options"
    android:orientation="vertical">

8
    <android.widget.Button
9 10 11 12 13
        android:id="@+id/button_take_a_photo"
        style="?android:attr/borderlessButtonStyle"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:drawablePadding="20dp"
Hussein El Feky's avatar
Hussein El Feky committed
14
        android:drawableStart="@drawable/ic_camera_24dp"
15 16 17
        android:gravity="start|center"
        android:text="@string/action_take_a_photo" />

18
    <android.widget.Button
19
        android:id="@+id/button_attach_a_file"
20 21 22 23 24 25
        style="?android:attr/borderlessButtonStyle"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:drawablePadding="20dp"
        android:drawableStart="@drawable/ic_files_24dp"
        android:gravity="start|center"
26
        android:text="@string/action_attach_a_files" />
27

28
    <android.widget.Button
29 30 31 32 33 34 35
        android:id="@+id/button_drawing"
        style="?android:attr/borderlessButtonStyle"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:drawablePadding="20dp"
        android:drawableStart="@drawable/ic_gesture_black_24dp"
        android:gravity="start|center"
36
        android:text="@string/action_drawing" />
37

38
</LinearLayout>