<?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="match_parent"
|
android:background="@color/ac_bg"
|
android:orientation="vertical">
|
|
<include layout="@layout/top_bar_layout_txt" />
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:background="@mipmap/bg_red"
|
android:gravity="center"
|
android:orientation="vertical"
|
android:padding="@dimen/x16">
|
|
<ImageView
|
android:id="@+id/iv_search"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="@dimen/x8"
|
android:layout_marginBottom="@dimen/x10"
|
android:src="@mipmap/bt_start"
|
android:visibility="visible" />
|
|
<ImageView
|
android:id="@+id/iv_searchpic"
|
android:layout_width="@dimen/x70"
|
android:layout_height="@dimen/x70"
|
android:scaleType="centerCrop"
|
android:src="@mipmap/bg_start" />
|
</LinearLayout>
|
|
<LinearLayout
|
android:id="@+id/ll_tishi"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:orientation="vertical">
|
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:padding="@dimen/x10"
|
android:text="@string/caozuo"
|
android:textColor="@color/dark_gray_txt" />
|
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="1dp"
|
android:layout_marginLeft="@dimen/x10"
|
android:background="@color/gray_line" />
|
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:drawableLeft="@mipmap/icon1"
|
android:drawablePadding="@dimen/x8"
|
android:padding="@dimen/x10"
|
android:text="@string/caozuo1"
|
android:textColor="@color/dark_gray_txt" />
|
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="1dp"
|
android:layout_marginLeft="@dimen/x10"
|
android:background="@color/gray_line" />
|
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:drawableLeft="@mipmap/icon2"
|
android:drawablePadding="@dimen/x8"
|
android:padding="@dimen/x10"
|
android:text="@string/caozuo2"
|
android:textColor="@color/dark_gray_txt" />
|
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="1dp"
|
android:layout_marginLeft="@dimen/x10"
|
android:background="@color/gray_line" />
|
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:drawableLeft="@mipmap/icon3"
|
android:drawablePadding="@dimen/x8"
|
android:padding="@dimen/x10"
|
android:text="@string/caozuo3"
|
android:textColor="@color/dark_gray_txt" />
|
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="1dp"
|
android:layout_marginLeft="@dimen/x10"
|
android:background="@color/gray_line" />
|
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:drawableLeft="@mipmap/icon4"
|
android:drawablePadding="@dimen/x8"
|
android:padding="@dimen/x10"
|
android:text="@string/caozuo4"
|
android:textColor="@color/dark_gray_txt" />
|
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="1dp"
|
android:layout_marginLeft="@dimen/x10"
|
android:background="@color/gray_line" />
|
</LinearLayout>
|
|
<android.support.v7.widget.RecyclerView
|
android:id="@+id/rv_ble"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:visibility="gone" />
|
</LinearLayout>
|