<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" style="@style/style_main_layout" android:orientation="vertical" > <view android:id="@+id/titlebar" android:layout_width="fill_parent" android:layout_height="wrap_content" class="com.smartdot.cgt.view.TitleBar" > </view> <LinearLayout android:id="@+id/linearLayout1" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="1" android:orientation="vertical" > <ListView android:id="@+id/listProblem" style="@style/style_listview" > </ListView> </LinearLayout> <TextView android:layout_width="match_parent" android:layout_height="1dp" android:visibility="invisible" android:background="@drawable/hislist_line" /> <LinearLayout android:id="@+id/panelCheckDetial" android:layout_width="match_parent" android:layout_height="wrap_content" android:background="#E9E9E9" android:visibility="gone" android:paddingBottom="5dp" > <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:layout_weight="1" android:orientation="vertical" > <Button android:id="@+id/btnViewAll" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center" android:layout_marginBottom="5dp" android:layout_marginTop="5dp" android:background="@drawable/hislist_all_pressed" android:gravity="center" > </Button> <TextView android:id="@+id/tvViewAll" android:layout_width="match_parent" android:layout_height="wrap_content" android:gravity="center" android:text="全部" /> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:layout_weight="1" android:orientation="vertical" > <Button android:id="@+id/btnViewCheck" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center" android:layout_marginBottom="5dp" android:layout_marginTop="5dp" android:background="@drawable/hislist_notcheck" android:gravity="center" > </Button> <TextView android:id="@+id/tvViewCheck" android:layout_width="match_parent" android:layout_height="wrap_content" android:gravity="center" android:text="未核实" /> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:layout_weight="1" android:orientation="vertical" > <Button android:id="@+id/btnViewReCheck" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center" android:layout_marginBottom="5dp" android:layout_marginTop="5dp" android:background="@drawable/hislist_checked" android:gravity="center" > </Button> <TextView android:id="@+id/tvViewReCheck" android:layout_width="match_parent" android:layout_height="wrap_content" android:gravity="center" android:text="经核实" /> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:layout_weight="1" android:orientation="vertical" > <Button android:id="@+id/btnViewReChecking" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center" android:layout_marginBottom="5dp" android:layout_marginTop="5dp" android:background="@drawable/hislist_checking" android:gravity="center" > </Button> <TextView android:id="@+id/tvViewReChecking" android:layout_width="match_parent" android:layout_height="wrap_content" android:gravity="center" android:text="协调中" /> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:layout_weight="1" android:orientation="vertical" > <Button android:id="@+id/btnViewReCheckPass" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center" android:layout_marginBottom="5dp" android:layout_marginTop="5dp" android:background="@drawable/hislist_recheck" android:gravity="center" > </Button> <TextView android:id="@+id/tvViewReCheckPass" android:layout_width="match_parent" android:layout_height="wrap_content" android:gravity="center" android:text="核查通过" /> </LinearLayout> </LinearLayout> </LinearLayout>