<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:orientation="vertical"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
>
|
<TextView android:id="@+id/pop_protocol_sign"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:gravity="center"
|
android:padding="16dp"
|
android:textColor="#0285F0"
|
android:textSize="15sp"
|
android:clickable="true"
|
android:background="@drawable/protocol_show_bg"
|
/>
|
<View android:layout_width="match_parent"
|
android:layout_height="1px"
|
android:background="#999999"
|
/>
|
<TextView android:id="@+id/pop_protocol_pay"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:gravity="center"
|
android:padding="16dp"
|
android:textColor="#0285F0"
|
android:textSize="15sp"
|
android:clickable="true"
|
android:background="@drawable/protocol_show_bg"
|
/>
|
<View android:layout_width="match_parent"
|
android:layout_height="1px"
|
android:background="#999999"
|
/>
|
<TextView android:id="@+id/pop_protocol_bank"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:gravity="center"
|
android:padding="16dp"
|
android:textColor="#0285F0"
|
android:textSize="15sp"
|
android:clickable="true"
|
android:background="@drawable/protocol_show_bg"
|
android:visibility="gone"
|
/>
|
<View android:id="@+id/pop_protocol_bank_divider"
|
android:layout_width="match_parent"
|
android:layout_height="1px"
|
android:background="#999999"
|
android:visibility="gone"
|
/>
|
<TextView android:id="@+id/pop_protocol_cancel"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:text="取消"
|
android:gravity="center"
|
android:padding="14dp"
|
android:textColor="#ff0000"
|
android:textSize="15sp"
|
android:clickable="true"
|
android:background="@drawable/protocol_show_bg"
|
/>
|
</LinearLayout>
|