| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/rl_popup_window"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="#8000" >
- <LinearLayout
- android:layout_width="271dp"
- android:layout_height="165dp"
- android:layout_centerInParent="true"
- android:background="@drawable/approve_opinion_popup_window_background"
- android:clickable="true"
- android:orientation="vertical" >
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="51dp" >
- <TextView
- android:id="@+id/tv_popup_window_title"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerHorizontal="true"
- android:layout_marginTop="22dp"
- android:text="退出程序"
- android:textColor="#000"
- android:textSize="16sp" />
- </RelativeLayout>
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="70dp" >
- <TextView
- android:id="@+id/tv_popup_window_message"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerHorizontal="true"
- android:layout_marginTop="22dp"
- android:text=""
- android:textColor="#000"
- android:textSize="14sp" />
- </RelativeLayout>
-
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="horizontal" >
- <RelativeLayout
- android:id="@+id/ll_ok"
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="1"
- android:clickable="true" >
- <TextView
- android:id="@+id/tv_popup_window_ok"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:text="确定"
- android:textColor="#df00"
- android:textSize="14sp" />
- </RelativeLayout>
- <View
- android:layout_width="0.5dp"
- android:layout_height="match_parent"
- android:layout_marginTop="10dp"
- android:background="#1000" />
- <RelativeLayout
- android:id="@+id/ll_cancel"
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="1"
- android:clickable="true" >
- <TextView
- android:id="@+id/tv_popup_window_cancel"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:text="取消"
- android:textColor="#000"
- android:textSize="14sp" />
- </RelativeLayout>
- </LinearLayout>
- </LinearLayout>
- </RelativeLayout>
|