|
|
@@ -0,0 +1,89 @@
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+ xmlns:tools="http://schemas.android.com/tools"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:background="@color/bg_underlying"
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:padding="@dimen/activity_vertical_margin">
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="30dp"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:gravity="center"
|
|
|
+ android:maxLines="1"
|
|
|
+ android:text="------------------------------------------"
|
|
|
+ android:textColor="@color/titleBlue"/>
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center_vertical"
|
|
|
+ android:layout_marginLeft="10dp"
|
|
|
+ android:layout_marginRight="10dp"
|
|
|
+ android:gravity="center"
|
|
|
+ android:singleLine="true"
|
|
|
+ android:text="@string/common_service_query"
|
|
|
+ android:textColor="@color/titleBlue"
|
|
|
+ android:textSize="16sp"/>
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:gravity="center"
|
|
|
+ android:maxLines="1"
|
|
|
+ android:text="------------------------------------------"
|
|
|
+ android:textColor="@color/titleBlue"/>
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <com.xzjmyk.pm.activity.view.MyGridView
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:numColumns="3"
|
|
|
+ android:scrollbars="none"
|
|
|
+ />
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="30dp"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:gravity="center"
|
|
|
+ android:maxLines="1"
|
|
|
+ android:text="------------------------------------------"
|
|
|
+ android:textColor="@color/titleBlue"/>
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center_vertical"
|
|
|
+ android:layout_marginLeft="10dp"
|
|
|
+ android:layout_marginRight="10dp"
|
|
|
+ android:gravity="center"
|
|
|
+ android:singleLine="true"
|
|
|
+ android:text="@string/more_queries"
|
|
|
+ android:textColor="@color/titleBlue"
|
|
|
+ android:textSize="16sp"/>
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:gravity="center"
|
|
|
+ android:maxLines="1"
|
|
|
+ android:text="------------------------------------------"
|
|
|
+ android:textColor="@color/titleBlue"/>
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+</LinearLayout>
|