Я строю макет, который содержит две кнопки и MapView.Кнопки должны быть расположены выше и ниже MapView.Я пробовал несколько комбинаций макетов (Относительный, Линейный, Рамочный ...), но MapView не поддерживает layout_height = wrap_content, если я не использую определенную высоту, такую как layout_height = "200dp".
Топкнопка отображается, а нижняя кнопка - нет.Ниже мой тестовый XML-файл.
Есть предложения?
android: layout_width = "fill_parent" android: layout_height = "fill_parent">
<Button
android:id="@+id/btn1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Button1"
android:background="#FF0000" />
<com.google.android.maps.MapView
android:id="@+id/map1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:apiKey="my map key (removed for example)"
/>
<Button
android:id="@+id/btn2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Button2"
android:background="#00FF00" />