<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="350dp"
|
android:layout_height="wrap_content"
|
android:background="@drawable/yyj_sdk_dialog_bg_round"
|
android:orientation="vertical">
|
|
|
<TextView
|
android:id="@+id/tv_title"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginLeft="30dp"
|
android:layout_marginRight="30dp"
|
android:gravity="center"
|
android:layout_marginTop="30dp"
|
android:text="@string/yyj_sdk_check_new_version"
|
android:textColor="@color/yyj_sdk_title_txt"
|
android:textSize="20sp" />
|
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="25dp"
|
android:layout_marginBottom="20dp"
|
android:gravity="center"
|
android:orientation="horizontal"
|
>
|
|
<Button
|
android:id="@+id/btn_cancel"
|
android:layout_width="90dp"
|
android:layout_height="32dp"
|
android:background="@drawable/yyj_sdk_shape_bg_green_round"
|
android:gravity="center"
|
android:text="@string/yyj_sdk_cancel"
|
android:textColor="@color/white"
|
android:textSize="14sp" />
|
|
<Button
|
android:id="@+id/btn_ok"
|
android:layout_width="90dp"
|
android:layout_height="32dp"
|
android:layout_marginLeft="35dp"
|
android:background="@drawable/yyj_sdk_shape_bg_blue_round"
|
android:gravity="center"
|
android:text="@string/yyj_sdk_ok"
|
android:textColor="@color/white"
|
android:textSize="14sp" />
|
</LinearLayout>
|
</LinearLayout>
|