item_layout_image_diloagbox.xml
1.34 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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="280dp"
android:layout_height="180dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:background="@color/textcolor"
android:orientation="vertical"
android:padding="20dp">
<Button
android:id="@+id/btn_camera"
android:layout_width="match_parent"
android:layout_height="40dp"
android:layout_marginBottom="6dp"
android:background="@drawable/yellow_bg"
android:text="@string/camera_txt"
android:textColor="@color/whitecolor" />
<Button
android:id="@+id/btn_gallery"
android:layout_width="match_parent"
android:layout_height="40dp"
android:layout_marginTop="6dp"
android:background="@drawable/yellow_bg"
android:text="@string/gallery_txt"
android:textColor="@color/whitecolor" />
<Button
android:id="@+id/btn_cancel"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
android:background="@color/yellowcolor"
android:text="@string/cancel"
android:textColor="@color/whitecolor" />
</LinearLayout>