imagedialogbox.xml 1.6 KB
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="280dp"
    android:layout_height="220dp"
    android:layout_marginLeft="10dp"
    android:layout_marginRight="10dp"
    android:background="@drawable/black_bg"
    android:orientation="vertical"
    android:padding="20dp">

    <Button
        android:id="@+id/btn_camera"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        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="wrap_content"
        android:layout_marginTop="6dp"
        android:background="@drawable/yellow_bg"
        android:text="@string/gallery_txt"
        android:textColor="@color/whitecolor" />
    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="@dimen/margin_five"
        android:text="Image should be less then 1mb. "
        android:textColor="@color/textcolor"
        android:textSize="@dimen/twelbeText_size"/>


    <Button
        android:id="@+id/btn_cancel"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="15dp"
        android:background="@drawable/yellow_bg"
        android:text="@string/cancle_txt"
        android:textColor="@color/red" />

</LinearLayout>