<?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="wrap_content"
|
android:background="@drawable/lp_dialog_background"
|
android:orientation="vertical">
|
|
<TextView
|
android:id="@+id/lpsdk_dialog_title_tv"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="20dp"
|
android:gravity="center"
|
android:text="提示"
|
android:textColor="#4484F4"
|
android:textSize="16sp" />
|
|
<TextView
|
android:id="@+id/lpsdk_dialog_content_tv"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_margin="20dp"
|
android:gravity="center"
|
android:text="内容"
|
android:textColor="@color/lpsdk_textColor"
|
android:textSize="12sp" />
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="44dp"
|
android:layout_marginTop="10dp"
|
android:orientation="horizontal">
|
|
<TextView
|
android:id="@+id/lpsdk_dialog_cancel_tv"
|
android:layout_width="0dp"
|
android:layout_height="match_parent"
|
android:text="@string/lp_cancel"
|
android:gravity="center"
|
android:textSize="16sp"
|
android:background="@drawable/lp_dialog_cancel_background"
|
android:textColor="@color/lpsdk_textColor"
|
android:layout_weight="1" />
|
|
<TextView
|
android:id="@+id/lpsdk_dialog_confirm_tv"
|
android:layout_width="0dp"
|
android:layout_height="match_parent"
|
android:gravity="center"
|
android:textColor="@color/lpsdk_color_white"
|
android:text="@string/lp_confirm"
|
android:background="@drawable/lp_dialog_confirm_background"
|
android:layout_weight="1" />
|
</LinearLayout>
|
|
</LinearLayout>
|