Я пытаюсь создать приложение карты, которое позволяет переключаться между картой и видом со спутника с помощью двух кнопок. Однако, когда я добавляю две кнопки, карта сокращается, чтобы не занимать весь экран устройства.
Сжатая карта
Как сделать так, чтобы карта занимала весь экран, а затем кнопки прокручивались вниз под этим экраном? Вот код для файла макета:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView android:layout_height="wrap_content"
android:layout_width="wrap_content"
xmlns:android="http://schemas.android.com/apk/res/android">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:map="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/map"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
map:uiZoomControls="true"
tools:context=".MapsActivity" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Map View"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Satellite View"/>
</LinearLayout>
</LinearLayout>
</ScrollView>