高德地图补充--XML布局文件

前端之家收集整理的这篇文章主要介绍了高德地图补充--XML布局文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/rl"
android:orientation="vertical"
tools:context="com.example.kaoshi3.MainActivity">


<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<EditText
android:id="@+id/et1"
android:layout_width="0dp"
android:layout_weight="3"
android:layout_height="wrap_content" />
<EditText
android:id="@+id/et2"
android:layout_width="0dp"
android:layout_weight="3"
android:layout_height="wrap_content" />
<Button
android:id="@+id/but"
android:layout_width="0dp"
android:layout_weight="1"
android:text="查找"
android:layout_height="wrap_content" />
</LinearLayout>
<com.amap.api.maps.MapView

android:id="@+id/map"

android:layout_width="match_parent"

android:layout_height="match_parent"/> </LinearLayout>

原文链接:https://www.f2er.com/xml/293700.html

猜你在找的XML相关文章