123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="285dp"
- android:layout_height="wrap_content"
- android:background="@color/bd_transparent"
- android:orientation="vertical"
- >
- <LinearLayout
- android:id="@+id/content"
- android:layout_width="285dp"
- android:layout_height="wrap_content"
- android:background="@color/bd_gamesdk_white"
- android:layout_marginTop="20dp"
- android:paddingTop="58dp"
- android:paddingBottom="26dp"
- android:orientation="vertical">
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textSize="14dp"
- android:textColor="@color/bd_color_666666"
- android:layout_marginLeft="15dp"
- android:text="@string/bd_app_update_note"
- />
- <TextView
- android:id="@+id/content_txt"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textSize="14dp"
- android:textColor="@color/bd_color_666666"
- android:layout_marginTop="6dp"
- android:layout_marginLeft="15dp"
- />
- </LinearLayout>
- <LinearLayout
- android:id="@+id/install_btn"
- android:layout_width="285dp"
- android:layout_height="40dp"
- android:layout_below="@+id/content"
- android:background="@drawable/bd_dialog_round_bottom_bg_b"
- android:gravity="center_horizontal"
- android:orientation="vertical">
- <View
- android:layout_width="match_parent"
- android:layout_height="0.5dp"
- android:background="#e0e0e0"
- ></View>
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="40dp"
- android:textSize="16sp"
- android:gravity="center"
- android:textColor="@color/bd_color_333333"
- android:text="@string/bd_app_update_install"
- />
- </LinearLayout>
- <ImageView
- android:layout_width="285dp"
- android:layout_height="64dp"
- android:layout_alignParentTop="true"
- android:src="@drawable/bdp_dialog_app_update_head"/>
- <ImageView
- android:id="@+id/bdp_dialog_app_update_close"
- android:layout_width="30dp"
- android:layout_height="30dp"
- android:layout_alignParentTop="true"
- android:layout_alignEnd="@+id/content"
- android:layout_alignRight="@+id/content"
- android:padding="8dp"
- android:layout_marginTop="8dp"
- android:layout_marginRight="9dp"
- android:src="@drawable/bdp_dialog_app_update_close"/>
- </RelativeLayout>
|