58 lines
1.7 KiB
XML
58 lines
1.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
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:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:context=".MainActivity">
|
|
|
|
<androidx.appcompat.widget.Toolbar
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:id="@+id/activitymainToolbar1"/>
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1.0">
|
|
|
|
<com.tencent.tencentmap.mapsdk.maps.TextureMapView
|
|
android:id="@+id/mapview"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"/>
|
|
|
|
<TextView
|
|
android:id="@+id/tv_info"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="@color/colorPrimary"
|
|
android:textStyle="bold"
|
|
android:textSize="14sp"
|
|
android:background="#CAFFFFFF"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_alignParentRight="true">
|
|
|
|
</TextView>
|
|
|
|
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
|
android:id="@+id/fab"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentEnd="true"
|
|
android:layout_margin="16dp"
|
|
android:src="@drawable/ic_location_searching"
|
|
app:backgroundTint="@color/colorPrimary"
|
|
android:layout_alignParentTop="true"/>
|
|
|
|
</RelativeLayout>
|
|
|
|
<cc.winboll.studio.libappbase.LogView
|
|
android:id="@+id/logview"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="300dp"/>
|
|
|
|
</LinearLayout>
|
|
|