<?xml version="1.0" encoding="utf-8"?>
|
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
android:orientation="vertical"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
app:cardBackgroundColor="#FFFAD1E0"
|
app:cardCornerRadius="10dp"
|
app:cardElevation="0dp"
|
>
|
<LinearLayout
|
android:layout_width="200dp"
|
android:layout_height="180dp"
|
android:orientation="vertical"
|
android:gravity="center_horizontal"
|
>
|
<TextView
|
android:id="@+id/tv_global_search"
|
android:layout_width="match_parent"
|
android:layout_height="0dp"
|
android:gravity="center"
|
android:text="全局搜索"
|
android:textColor="#FF333333"
|
android:textSize="12sp"
|
android:layout_weight="1"
|
/>
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="0.3dp"
|
android:background="#FF939393"
|
/>
|
<TextView
|
android:id="@+id/tv_search_in_family_memorabilia"
|
android:layout_width="match_parent"
|
android:layout_height="0dp"
|
android:gravity="center"
|
android:text="在“家大事记”内搜索"
|
android:textColor="#FF333333"
|
android:textSize="12sp"
|
android:layout_weight="1"
|
/>
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="0.3dp"
|
android:background="#FF939393"
|
/>
|
|
<TextView
|
android:id="@+id/tv_search_by_title"
|
android:layout_width="match_parent"
|
android:layout_height="0dp"
|
android:layout_weight="1"
|
android:gravity="center"
|
android:text="按“大事记标题”搜索"
|
android:textColor="#FF333333"
|
android:textSize="12sp" />
|
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="0.3dp"
|
android:background="#FF939393"
|
/>
|
<TextView
|
android:id="@+id/tv_search_by_people"
|
android:layout_width="match_parent"
|
android:layout_height="0dp"
|
android:gravity="center"
|
android:text="按“人物”搜索"
|
android:textColor="#FF333333"
|
android:textSize="12sp"
|
android:layout_weight="1"
|
/>
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="0.3dp"
|
android:background="#FF939393"
|
/>
|
|
<TextView
|
android:id="@+id/tv_search_by_time"
|
android:layout_width="match_parent"
|
android:layout_height="0dp"
|
android:layout_weight="1"
|
android:gravity="center"
|
android:text="按“时间”搜索"
|
android:textColor="#FF333333"
|
android:textSize="12sp" />
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="0.3dp"
|
android:background="#FF939393"
|
/>
|
<TextView
|
android:id="@+id/tv_search_by_place"
|
android:layout_width="match_parent"
|
android:layout_height="0dp"
|
android:gravity="center"
|
android:text="按“地点”搜索"
|
android:textColor="#FF333333"
|
android:textSize="12sp"
|
android:layout_weight="1"
|
/>
|
|
</LinearLayout>
|
|
</androidx.cardview.widget.CardView>
|