<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical" android:padding="@dimen/size_dp_10" android:layout_marginTop="@dimen/size_dp_10" android:background="@color/white" > <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content"> <TextView android:layout_gravity="center_horizontal" android:layout_width="@dimen/size_dp_60" android:textSize="@dimen/textSize16" android:text="@string/report" android:textStyle="bold" android:textColor="@color/textColor" android:layout_height="wrap_content" /> <com.huxq17.handygridview.HandyGridView android:layout_marginLeft="@dimen/size_dp_10" android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/handyGridView" android:numColumns="3" android:horizontalSpacing="@dimen/size_dp_15" android:verticalSpacing="@dimen/size_dp_15" android:gravity="center" android:background="@color/white" ></com.huxq17.handygridview.HandyGridView> </LinearLayout> <LinearLayout android:layout_marginTop="@dimen/size_dp_10" android:layout_marginBottom="@dimen/size_dp_10" android:focusable="true" android:focusableInTouchMode="true" android:gravity="center_vertical" android:layout_width="match_parent" android:layout_height="wrap_content"> <TextView android:layout_width="@dimen/size_dp_60" android:textSize="@dimen/textSize16" android:text="关键字" android:textStyle="bold" android:textColor="@color/textColor" android:layout_height="wrap_content" /> <EditText android:layout_width="match_parent" android:layout_height="wrap_content" android:hint="请输入要搜索的内容" android:textSize="@dimen/textSize14" android:textColor="@color/textColor" android:background="@drawable/shape_edit_radius4_balck" android:gravity="center" android:padding="@dimen/size_dp_5" android:layout_marginLeft="@dimen/size_dp_10" /> </LinearLayout> <TextView android:id="@+id/tvSubmit" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textColor="@color/white" android:textSize="@dimen/textSize16" android:text="确定" android:paddingLeft="@dimen/size_dp_60" android:paddingRight="@dimen/size_dp_60" android:background="@drawable/shape_blue_select" android:paddingTop="@dimen/size_dp_5" android:paddingBottom="@dimen/size_dp_5" android:layout_gravity="center_horizontal" android:layout_marginTop="@dimen/size_dp_10" android:layout_marginBottom="@dimen/size_dp_10" /> </LinearLayout>