Я хочу создать простой интерфейс с MapView
сверху и Button
снизу, чтобы обновить MapView
.Оба элемента должны fill_parent
в ширина , но я хочу, чтобы они не перекрывались в высота .Моя проблема в том, что мой вид карты, кажется, перекрывается с моим Button
и скрывает его.Это мой layout.xml
:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<com.google.android.maps.MapView
android:id="@+id/mapview"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:enabled="true"
android:clickable="true"
android:apiKey="my_api_key" />
<Button
android:id="@+id/close"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_alignParentBottom="true"
android:text="@string/title_close" />
</LinearLayout>
Заранее спасибо.