123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- <?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"
- android:background="#99232323" >
- <LinearLayout
- android:layout_width="280dp"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:background="@drawable/umeng_update_dialog_bg"
- android:orientation="vertical" >
- <!-- Title -->
- <RelativeLayout
- android:layout_width="fill_parent"
- android:layout_height="40dp" >
- <ImageView
- android:id="@+id/umeng_update_wifi_indicator"
- android:layout_width="30dp"
- android:layout_height="30dp"
- android:layout_centerVertical="true"
- android:layout_marginLeft="10dp"
- android:contentDescription="@string/UMGprsCondition"
- android:src="@drawable/umeng_update_wifi_disable" />
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:text="@string/UMUpdateTitle"
- android:textAppearance="?android:attr/textAppearanceLarge"
- android:textColor="#63C2FF" />
-
- <Button
- android:id="@+id/umeng_update_id_close"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentRight="true"
- android:layout_centerVertical="true"
- android:layout_marginRight="10dp"
- android:focusable="true"
- android:visibility="gone"
- android:background="@drawable/umeng_update_button_close_bg_selector"/>
-
- </RelativeLayout>
- <!-- split -->
- <View
- android:layout_width="fill_parent"
- android:layout_height="2dp"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- android:background="#2AACFF" />
- <!-- Content -->
- <ScrollView
- android:layout_width="fill_parent"
- android:layout_height="0dp"
- android:layout_weight="1"
- android:padding="10dp" >
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical" >
- <TextView
- android:id="@+id/umeng_update_content"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="5dp"
- android:layout_marginRight="5dp"
- android:layout_marginTop="10dp"
- android:focusable="true"
- android:textColor="#AAABAF" />
- </LinearLayout>
- </ScrollView>
-
- <!-- Ignore CheckBox -->
- <CheckBox
- android:id="@+id/umeng_update_id_check"
- android:layout_width="fill_parent"
- android:layout_height="32dp"
- android:text="@string/UMIgnore"
- android:button="@drawable/umeng_update_button_check_selector"
- android:textColor="#AAABAF" />
- <!-- OK&Cancel Button -->
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="wrap_content" >
- <Button
- android:id="@+id/umeng_update_id_ok"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_margin="5dp"
- android:layout_weight="1"
- android:background="@drawable/umeng_update_button_ok_bg_selector"
- android:gravity="center"
- android:padding="12dp"
- android:text="@string/UMUpdateNow"
- android:focusable="true"
- android:textColor="#FFFFFF" />
- <Button
- android:id="@+id/umeng_update_id_cancel"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_margin="5dp"
- android:layout_weight="1"
- android:background="@drawable/umeng_update_button_cancel_bg_selector"
- android:gravity="center"
- android:padding="12dp"
- android:text="@string/UMNotNow"
- android:focusable="true"
- android:textColor="#AAABAF" />
- <Button
- android:id="@+id/umeng_update_id_ignore"
- android:visibility="gone"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_margin="5dp"
- android:layout_weight="1"
- android:background="@drawable/umeng_update_button_cancel_bg_selector"
- android:gravity="center"
- android:padding="12dp"
- android:text="@string/UMIgnore"
- android:focusable="true"
- android:textColor="#AAABAF" />
- </LinearLayout>
- </LinearLayout>
- </RelativeLayout>
|