88 lines
2.9 KiB
XML
88 lines
2.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
>
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/ll_radio_white"
|
|
android:paddingLeft="15dp"
|
|
android:paddingTop="18dp"
|
|
android:paddingRight="15dp"
|
|
android:paddingBottom="18dp"
|
|
>
|
|
|
|
<TextView
|
|
android:id="@+id/tv_title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="5dp"
|
|
android:gravity="center"
|
|
android:text="Title"
|
|
android:textColor="#FF333333"
|
|
android:textSize="17dp"
|
|
android:textStyle="bold"
|
|
/>
|
|
|
|
<TextView
|
|
android:id="@+id/tv_content"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@+id/tv_title"
|
|
android:layout_marginLeft="5dp"
|
|
android:layout_marginTop="10dp"
|
|
android:layout_marginRight="5dp"
|
|
android:gravity="center"
|
|
android:text="content"
|
|
android:textColor="#FF333333"
|
|
android:textSize="13dp"
|
|
/>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@+id/tv_content"
|
|
android:layout_marginTop="15dp"
|
|
android:gravity="center"
|
|
android:orientation="horizontal"
|
|
>
|
|
|
|
<TextView
|
|
android:id="@+id/tv_left"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="36dp"
|
|
android:background="@drawable/round_button_green"
|
|
android:ellipsize="end"
|
|
android:gravity="center"
|
|
android:lines="1"
|
|
android:paddingLeft="33dp"
|
|
android:paddingRight="33dp"
|
|
android:text="取消"
|
|
android:textColor="@color/black"
|
|
android:textSize="13dp"
|
|
/>
|
|
|
|
<TextView
|
|
android:id="@+id/tv_right"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="36dp"
|
|
android:layout_marginLeft="35dp"
|
|
android:background="@drawable/round_button_green"
|
|
android:ellipsize="end"
|
|
android:gravity="center"
|
|
android:lines="1"
|
|
android:paddingLeft="33dp"
|
|
android:paddingRight="33dp"
|
|
android:text="确定"
|
|
android:textColor="@color/black"
|
|
android:textSize="13dp"
|
|
/>
|
|
|
|
</LinearLayout>
|
|
|
|
</RelativeLayout>
|
|
|
|
</RelativeLayout> |