12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:gravity="center_horizontal"
- android:orientation="vertical">
- <RelativeLayout
- android:layout_width="246dp"
- android:layout_height="131dp"
- android:layout_gravity="center_horizontal"
- android:background="@drawable/tysdkn_dialog_bg_go_app"
- android:orientation="vertical">
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerHorizontal="true"
- android:layout_marginTop="12dp"
- android:text="系统提示"
- android:textColor="#111111"
- android:textSize="16sp" />
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:layout_marginTop="18dp"
- android:text="是否前往APP操作该功能"
- android:textColor="#111111"
- android:textSize="15sp" />
- <LinearLayout
- android:id="@+id/tysdkn_ll"
- android:layout_width="match_parent"
- android:layout_height="38dp"
- android:layout_alignParentBottom="true">
- <TextView
- android:id="@+id/tysdkn_tv_cancel"
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="1"
- android:background="@drawable/tysdkn_shape_cancel"
- android:gravity="center"
- android:text="取消"
- android:textColor="#333333"
- android:textSize="12sp" />
- <TextView
- android:id="@+id/tysdkn_tv_go_app"
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="1"
- android:background="@drawable/tysdkn_bg_go_app"
- android:gravity="center"
- android:text="立即前往"
- android:textColor="#FFFFFF"
- android:textSize="12sp" />
- </LinearLayout>
- <View
- android:layout_width="match_parent"
- android:layout_height="0.5dp"
- android:layout_alignTop="@id/tysdkn_ll"
- android:background="#eeeeee" />
- </RelativeLayout>
- </LinearLayout>
|