<?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/register_gray"
|
android:orientation="vertical">
|
|
<View
|
android:id="@+id/v_status_bar"
|
android:layout_width="match_parent"
|
android:layout_height="15dp"
|
android:background="@color/top_bar_color" />
|
|
<include layout="@layout/navigation_top_bar" />
|
|
<ScrollView
|
android:layout_width="match_parent"
|
android:layout_height="match_parent">
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:orientation="vertical">
|
|
<LinearLayout
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_gravity="center"
|
android:layout_marginTop="10dp"
|
android:orientation="vertical">
|
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_margin="8dp"
|
android:text="1、长按浏览器地址栏复制链接" />
|
|
<ImageView
|
android:id="@+id/imageView"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_margin="8dp"
|
android:src="@drawable/ic_link_copy_1" />
|
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_margin="8dp"
|
android:text="2、点击分享操作,选择复制商品链接" />
|
|
<ImageView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_margin="8dp"
|
android:src="@drawable/ic_link_copy_2" />
|
|
</LinearLayout>
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:layout_gravity="center_horizontal"
|
android:background="@color/white"
|
android:gravity="center_horizontal"
|
android:orientation="vertical">
|
|
<EditText
|
android:id="@+id/et_get_link"
|
android:layout_width="match_parent"
|
android:layout_height="80dp"
|
android:layout_marginBottom="20dp"
|
android:layout_marginLeft="30dp"
|
android:layout_marginRight="30dp"
|
android:layout_marginTop="20dp"
|
android:background="@color/register_gray"
|
android:digits="@string/rule_password"
|
android:gravity="top|left"
|
android:hint="请在此处粘贴商品链接"
|
android:padding="8dp"
|
android:textSize="14sp" />
|
|
<TextView
|
android:id="@+id/tv_get_goods_info"
|
android:layout_width="match_parent"
|
android:layout_height="38dp"
|
android:layout_marginBottom="8dp"
|
android:layout_marginLeft="30dp"
|
android:layout_marginRight="30dp"
|
android:layout_marginTop="8dp"
|
android:background="@color/yellow"
|
android:gravity="center"
|
android:padding="8dp"
|
android:text="获取商品信息" />
|
</LinearLayout>
|
</LinearLayout>
|
</ScrollView>
|
|
</LinearLayout>
|