<?xml version="1.0" encoding="utf-8"?>
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:orientation="vertical"
|
app:layout_constraintTop_toTopOf="parent"
|
android:background="@drawable/bg_white_top_20dp">
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:id="@+id/tv_gaode"
|
android:text="高德地图"
|
android:layout_marginTop="5dp"
|
android:gravity="center"
|
android:paddingVertical="12dp"
|
style="@style/style_common_text"/>
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="1px"
|
android:background="@color/dividing_line_color"/>
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:id="@+id/tv_baidu"
|
android:text="百度地图"
|
android:layout_marginTop="5dp"
|
android:gravity="center"
|
android:paddingVertical="12dp"
|
style="@style/style_common_text"/>
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="1px"
|
android:background="@color/dividing_line_color"/>
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:id="@+id/tv_tencent"
|
android:text="腾讯地图"
|
android:layout_marginTop="5dp"
|
android:gravity="center"
|
android:paddingVertical="12dp"
|
android:layout_marginBottom="5dp"
|
style="@style/style_common_text"/>
|
</LinearLayout>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|