94 lines
3.4 KiB
XML
94 lines
3.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
||
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||
xmlns:tools="http://schemas.android.com/tools"
|
||
android:layout_width="match_parent"
|
||
android:layout_height="match_parent"
|
||
tools:context=".activity.RegardMapActivity">
|
||
|
||
<LinearLayout
|
||
android:id="@+id/rl_filter"
|
||
android:layout_width="match_parent"
|
||
android:layout_height="wrap_content"
|
||
android:background="#1BA5F1"
|
||
android:orientation="horizontal"
|
||
android:paddingTop="@dimen/top_pind_sp"
|
||
app:layout_constraintEnd_toEndOf="parent"
|
||
app:layout_constraintStart_toStartOf="parent"
|
||
app:layout_constraintTop_toTopOf="parent">
|
||
|
||
<ImageView
|
||
android:id="@+id/iv_filter_final"
|
||
android:layout_width="wrap_content"
|
||
android:layout_height="45dp"
|
||
android:layout_alignParentLeft="true"
|
||
android:layout_marginLeft="15dp"
|
||
android:src="@drawable/icon_arrow" />
|
||
|
||
<TextView
|
||
android:id="@+id/tv_filter"
|
||
style="@style/text_style_toolbar_title"
|
||
android:layout_width="wrap_content"
|
||
android:layout_toRightOf="@id/iv_find_task"
|
||
android:text="地图寻宝简介" />
|
||
</LinearLayout>
|
||
|
||
<LinearLayout
|
||
android:layout_width="match_parent"
|
||
android:layout_height="0dp"
|
||
android:layout_margin="20dp"
|
||
android:layout_marginBottom="245dp"
|
||
android:orientation="vertical"
|
||
app:layout_constraintTop_toBottomOf="@+id/rl_filter"
|
||
app:layout_constraintBottom_toBottomOf="parent"
|
||
app:layout_constraintEnd_toEndOf="parent"
|
||
app:layout_constraintStart_toStartOf="parent"
|
||
>
|
||
|
||
<TextView
|
||
android:id="@+id/tv_phone"
|
||
android:layout_width="match_parent"
|
||
android:layout_height="wrap_content"
|
||
android:text="@string/map_regard"
|
||
|
||
android:textSize="16sp"
|
||
app:layout_constraintTop_toBottomOf="@+id/rl_filter"
|
||
|
||
/>
|
||
<LinearLayout
|
||
android:layout_width="match_parent"
|
||
android:layout_height="wrap_content"
|
||
android:orientation="horizontal">
|
||
<TextView
|
||
android:layout_width="wrap_content"
|
||
android:layout_height="wrap_content"
|
||
android:layout_marginTop="15dp"
|
||
android:text="公司官网请见"
|
||
android:textSize="16sp"
|
||
app:layout_constraintLeft_toLeftOf="@+id/tv_phone"
|
||
app:layout_constraintTop_toBottomOf="@+id/tv_phone" />
|
||
<TextView
|
||
android:id="@+id/tv_map_link"
|
||
android:layout_width="wrap_content"
|
||
android:layout_height="wrap_content"
|
||
android:layout_marginTop="15dp"
|
||
android:textColor="#0000FF"
|
||
android:textSize="16sp"
|
||
android:layout_marginLeft="5dp"
|
||
android:text="http://www.navinfo.com"
|
||
/>
|
||
</LinearLayout>
|
||
|
||
<TextView
|
||
android:id="@+id/tv_official_link"
|
||
android:layout_width="match_parent"
|
||
android:layout_height="wrap_content"
|
||
android:layout_marginTop="15sp"
|
||
android:textSize="16sp"
|
||
android:text="更多详情请见官网:https://dtxbmaps.navinfo.com/user"
|
||
app:layout_constraintLeft_toLeftOf="@+id/tv_phone"
|
||
app:layout_constraintTop_toBottomOf="@+id/tv_phone" />
|
||
|
||
</LinearLayout>
|
||
|
||
</androidx.constraintlayout.widget.ConstraintLayout> |