我的部分布局如下所示,但按钮在地图上显示上方,而不是“地图下方”。我该如何解决这个问题?
<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"
/>
答案 0 :(得分:4)
您的ID值不相同:
android:id="@+id/mapview1" // lowercase v
android:layout_below="@+id/mapView1" // uppercase V
这可能是在编译时捕获的,但是你在两者上都加了+
符号。这是我试图坚持“只在第一次出现+
标志”规则的原因之一。
修改强>
此布局有效(尽管您需要更换API密钥):
<?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>