<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout
|
android:id="@+id/dialog_view"
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:background="@color/tran"
|
android:minHeight="180dp"
|
android:minWidth="280dp"
|
android:orientation="vertical"
|
android:padding="3dp">
|
|
<TextView
|
android:id="@+id/tip_text"
|
android:layout_width="match_parent"
|
android:layout_height="0dp"
|
android:layout_weight="3"
|
android:background="@color/tran"
|
android:gravity="center"
|
android:paddingLeft="18dp"
|
android:paddingRight="18dp"
|
android:text="无法获取支付信息,请联系思璞客服"
|
android:textColor="@color/btn_text_color"
|
android:textSize="14sp"/>
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="44dp"
|
android:background="@color/tran"
|
android:orientation="horizontal"
|
android:textColor="@color/black">
|
|
<TextView
|
android:id="@+id/cancel"
|
android:layout_width="0dp"
|
android:layout_height="match_parent"
|
android:layout_margin="2dp"
|
android:layout_weight="1"
|
android:background="@drawable/white_button_selector"
|
android:gravity="center"
|
android:text="取消支付"
|
android:textColor="@color/btn_text_color"
|
android:textSize="16sp"/>
|
|
|
<!--
|
<TextView
|
android:id="@+id/sure"
|
android:layout_width="0dp"
|
android:layout_height="match_parent"
|
android:layout_margin="4px"
|
android:layout_weight="1"
|
android:background="@drawable/btn_added_selector_shape"
|
android:gravity="center"
|
android:text="@string/confirm"
|
android:textColor="@color/white"
|
android:textSize="32px"/>
|
-->
|
|
<TextView
|
android:id="@+id/sure"
|
android:layout_width="0dp"
|
android:layout_height="match_parent"
|
android:layout_margin="2dp"
|
android:layout_weight="1"
|
android:background="@drawable/white_button_selector"
|
android:gravity="center"
|
android:text="联系客服"
|
android:textColor="@color/btn_text_color"
|
android:textSize="16sp"/>
|
|
</LinearLayout>
|
</LinearLayout>
|