<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="260dp"
    android:layout_height="wrap_content">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="#ffffff"
        android:orientation="vertical">

        <TextView
            android:id="@+id/tianmu_tv_content"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="center_horizontal"
            android:layout_marginLeft="12dp"
            android:layout_marginTop="34dp"
            android:layout_marginRight="12dp"
            android:layout_marginBottom="34dp"
            android:gravity="center"
            android:textColor="#ff292929"
            android:textSize="16sp"
            android:textStyle="bold"
            tools:text="请求跳转 XXX" />

        <View
            android:layout_width="match_parent"
            android:layout_height="1px"
            android:background="#E7E7E7" />

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="36dp">

            <Button
                android:id="@+id/tianmu_btn_disagree"
                android:layout_width="0dp"
                android:layout_height="36dp"
                android:layout_weight="1"
                android:background="#fff"
                android:text="取消"
                android:textColor="#AFAFAF"
                android:textSize="16sp" />

            <Button
                android:id="@+id/tianmu_btn_agree"
                android:layout_width="0dp"
                android:layout_height="36dp"
                android:layout_weight="1"
                android:background="#0091ff"
                android:text="确认"
                android:textColor="#ffffff"
                android:textSize="16sp" />
        </LinearLayout>
    </LinearLayout>
</RelativeLayout>