样式布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="
http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="10dp"
android:id="@+id/myDialogLinearLout"
android:background="@drawable/popover_background" >
<ListView
android:id="@+id/myDialogLV"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="8"
android:background="@android:color/transparent" >
</ListView>
<Button
android:id="@+id/childGroupBtn"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="编辑我的分组"
android:layout_weight="1" />
</LinearLayout>