gpt4 book ai didi

android - 无法在 MapView 下方设置按钮

转载 作者:行者123 更新时间:2023-11-29 16:26:10 24 4
gpt4 key购买 nike

我的部分布局如下所示,但按钮显示在 MapView 上方,而不是预期的 map “下方”。我该如何解决这个问题?

   <RelativeLayout android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<com.google.android.maps.MapView
android:id="@+id/mapview1" android:layout_width="fill_parent"
android:layout_height="fill_parent" android:clickable="true"
android:apiKey="0i4xk7rTGI6b6ggDrC9hOYCbOd9julMg_DG79cg" />
<Button android:id="@+id/btnBanner"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text = "text"
android:layout_below="@+id/mapView1"
/>

最佳答案

您的 ID 值不相同:

android:id="@+id/mapview1"           // lowercase v

android:layout_below="@+id/mapView1" // uppercase V

这会在编译时被捕获,但是您在两者上都加上了 + 符号。这就是我尝试坚持“仅在第一次出现时放置 +”规则的原因之一。

编辑

此布局有效(尽管您需要替换 API key ):

<?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">
<com.google.android.maps.MapView android:id="@+id/map"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:apiKey="..."
android:layout_above="@+id/btnBanner"
android:layout_alignParentTop="true"
android:clickable="true" />
<Button android:id="@id/btnBanner"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:text = "text" />
</RelativeLayout>

关于android - 无法在 MapView 下方设置按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3538995/

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