gpt4 book ai didi

android - 谷歌地图的android xml布局问题

转载 作者:搜寻专家 更新时间:2023-11-01 08:14:03 24 4
gpt4 key购买 nike

我想构建这样的布局:

enter image description here

我的 XML 代码:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:id="@+id/base">
<com.google.android.maps.MapView
android:id = "@+id/mapView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:enabled="true"
android:clickable="true"
android:apiKey="0HD__0DaIgzDb8nHjJsuggkHlW1MofMwg-xVCpA"
/>
<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content">
</EditText>
<LinearLayout android:id="@+id/linearLayout1"
android:gravity="bottom"
android:layout_width="fill_parent"
android:orientation="horizontal"
android:layout_height="wrap_content"
android:layout_weight="1">
<Button android:text="Cancel"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_weight="1" ></Button>
<Button android:text="Confirm"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_weight="1" ></Button>
</LinearLayout>
</LinearLayout>`

但结果出来了,谷歌地图总放在了所有东西的上面。
我该如何解决这个问题?

最佳答案

使用相对布局我修改了你的代码。使用以下代码

<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:id="@+id/base">

<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:id="@+id/editText"
>
</EditText>
<LinearLayout
android:id="@+id/linearLayout1"
android:gravity="bottom"
android:layout_width="fill_parent"
android:orientation="horizontal"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_alignParentBottom="true">
<Button
android:text="Cancel"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_weight="1"></Button>
<Button
android:text="Confirm"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_weight="1"></Button>
</LinearLayout>

<com.google.android.maps.MapView
android:id="@+id/mapView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:enabled="true"
android:clickable="true"
android:apiKey="0HD__0DaIgzDb8nHjJsuggkHlW1MofMwg-xVCpA"
android:layout_below="@+id/editText"
android:layout_above="@+id/linearLayout1"/>
</RelativeLayout>

关于android - 谷歌地图的android xml布局问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6532693/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com