|
@@ -0,0 +1,140 @@
|
|
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
+ android:id="@+id/ll_search"
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:background="@color/white"
|
|
|
|
|
+ android:focusable="true"
|
|
|
|
|
+ android:focusableInTouchMode="true"
|
|
|
|
|
+ android:orientation="vertical">
|
|
|
|
|
+
|
|
|
|
|
+ <include layout="@layout/view_toolbar" />
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ <FrameLayout
|
|
|
|
|
+ android:id="@+id/fl_weather_url"
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:background="@color/white"
|
|
|
|
|
+ android:foreground="?attr/selectableItemBackground">
|
|
|
|
|
+
|
|
|
|
|
+ <LinearLayout
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:gravity="center_vertical"
|
|
|
|
|
+ android:minHeight="@dimen/height_tab_bar"
|
|
|
|
|
+ android:orientation="vertical"
|
|
|
|
|
+ android:paddingStart="@dimen/activity_horizontal_margin"
|
|
|
|
|
+ android:paddingTop="@dimen/margin_s"
|
|
|
|
|
+ android:paddingEnd="@dimen/activity_horizontal_margin"
|
|
|
|
|
+ android:paddingBottom="@dimen/margin_s">
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:text="你的专属GET链接(点击复制)"
|
|
|
|
|
+ android:textColor="@color/black_text_comfortable"
|
|
|
|
|
+ android:textSize="@dimen/text_sub_title"
|
|
|
|
|
+ android:textStyle="bold"/>
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:id="@+id/tv_weather_url"
|
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:layout_marginTop="@dimen/margin_sss"
|
|
|
|
|
+ android:textColor="@color/gray_text_s"
|
|
|
|
|
+ android:textSize="@dimen/text_normal_s"
|
|
|
|
|
+ android:maxLines="2"
|
|
|
|
|
+ android:ellipsize="end"/>
|
|
|
|
|
+ </LinearLayout>
|
|
|
|
|
+ </FrameLayout>
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ <include layout="@layout/view_divider_common" />
|
|
|
|
|
+
|
|
|
|
|
+ <FrameLayout
|
|
|
|
|
+ android:id="@+id/fl_header_email"
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:background="@color/white"
|
|
|
|
|
+ android:foreground="?attr/selectableItemBackground">
|
|
|
|
|
+
|
|
|
|
|
+ <LinearLayout
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:gravity="center_vertical"
|
|
|
|
|
+ android:minHeight="@dimen/height_tab_bar"
|
|
|
|
|
+ android:orientation="vertical"
|
|
|
|
|
+ android:paddingStart="@dimen/activity_horizontal_margin"
|
|
|
|
|
+ android:paddingTop="@dimen/margin_s"
|
|
|
|
|
+ android:paddingEnd="@dimen/activity_horizontal_margin"
|
|
|
|
|
+ android:paddingBottom="@dimen/margin_s">
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:text="Header参数1(点击复制value)"
|
|
|
|
|
+ android:textColor="@color/black_text_comfortable"
|
|
|
|
|
+ android:textSize="@dimen/text_sub_title"
|
|
|
|
|
+ android:textStyle="bold"/>
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:id="@+id/tv_header_email"
|
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:layout_marginTop="@dimen/margin_sss"
|
|
|
|
|
+ android:textColor="@color/gray_text_s"
|
|
|
|
|
+ android:textSize="@dimen/text_normal_s"
|
|
|
|
|
+ android:maxLines="2"
|
|
|
|
|
+ android:ellipsize="end"/>
|
|
|
|
|
+ </LinearLayout>
|
|
|
|
|
+ </FrameLayout>
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ <include layout="@layout/view_divider_common" />
|
|
|
|
|
+
|
|
|
|
|
+ <FrameLayout
|
|
|
|
|
+ android:id="@+id/fl_header_token"
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:background="@color/white"
|
|
|
|
|
+ android:foreground="?attr/selectableItemBackground">
|
|
|
|
|
+
|
|
|
|
|
+ <LinearLayout
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:gravity="center_vertical"
|
|
|
|
|
+ android:minHeight="@dimen/height_tab_bar"
|
|
|
|
|
+ android:orientation="vertical"
|
|
|
|
|
+ android:paddingStart="@dimen/activity_horizontal_margin"
|
|
|
|
|
+ android:paddingTop="@dimen/margin_s"
|
|
|
|
|
+ android:paddingEnd="@dimen/activity_horizontal_margin"
|
|
|
|
|
+ android:paddingBottom="@dimen/margin_s">
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:text="Header参数2(点击复制value)"
|
|
|
|
|
+ android:textColor="@color/black_text_comfortable"
|
|
|
|
|
+ android:textSize="@dimen/text_sub_title"
|
|
|
|
|
+ android:textStyle="bold"/>
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:id="@+id/tv_header_token"
|
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:layout_marginTop="@dimen/margin_sss"
|
|
|
|
|
+ android:textColor="@color/gray_text_s"
|
|
|
|
|
+ android:textSize="@dimen/text_normal_s"
|
|
|
|
|
+ android:maxLines="2"
|
|
|
|
|
+ android:ellipsize="end"/>
|
|
|
|
|
+ </LinearLayout>
|
|
|
|
|
+ </FrameLayout>
|
|
|
|
|
+
|
|
|
|
|
+ <include layout="@layout/view_divider_common" />
|
|
|
|
|
+
|
|
|
|
|
+ <EditText
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="match_parent"
|
|
|
|
|
+ android:editable="false" />
|
|
|
|
|
+</LinearLayout>
|