<?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="match_parent"
android:background="@color/dialog_half_trans">
<RelativeLayout
android:id="@+id/dialog_bg"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/transparent" />
<!--Body-->
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:background="@android:color/transparent"
android:clickable="true"
android:orientation="vertical">
<RelativeLayout
android:layout_width="308dp"
android:layout_height="300dp"
android:layout_centerInParent="true"
android:background="@android:color/white"
android:padding="15dp">
<com.contrarywind.view.WheelView
android:id="@+id/whellView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@+id/tv_finish"
android:layout_centerHorizontal="true"
android:minWidth="100dp"
android:minHeight="100dp" />
<Button
android:id="@+id/tv_finish"
android:layout_width="278dp"
android:layout_height="45dp"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="20dp"
android:layout_marginBottom="15dp"
android:background="@drawable/bg_star_btn"
android:text="确定"
android:textColor="@android:color/white"
android:textSize="15sp" />
</RelativeLayout>
</LinearLayout>
</RelativeLayout>
|