123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <LinearLayout
- android:id="@+id/image_video"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:gravity="center"
- android:orientation="vertical">
- <ImageView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:src="@mipmap/video_dialog" />
- <TextView
- android:id="@+id/txt_dialog_prompt"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginBottom="25dip"
- android:layout_marginLeft="25dip"
- android:gravity="center_horizontal"
- android:textSize="20dip" />
- </LinearLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_alignParentBottom="true"
- android:orientation="horizontal">
- <Button
- android:id="@+id/btn_accept"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_margin="5dip"
- android:layout_weight="1"
- android:background="@color/dialog_bg_blue"
- android:padding="@dimen/space_15"
- android:text="@string/dialog_system_accept"
- android:textColor="@color/white"
- android:textSize="@dimen/text_size_20" />
- <Button
- android:id="@+id/btn_refuse"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_margin="5dip"
- android:layout_weight="1"
- android:background="@color/dialog_bg_red"
- android:padding="@dimen/space_15"
- android:text="@string/dialog_system_refuse"
- android:textColor="@color/white"
- android:textSize="@dimen/text_size_20" />
- </LinearLayout>
- </RelativeLayout>
|