Фрагмент охватывает весь экран редактирования Android - PullRequest
0 голосов
/ 19 июня 2019

Итак, у меня есть приложение, которое выглядит так:

imagge

Но при создании графического интерфейса мне всегда приходится создавать кнопки и т. Д. В текстовом режиме, поскольку фрагмент карт Google блокирует весь экран дизайна:

enter image description here

Это мой файл:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_margin="5dp"
    android:orientation="horizontal">

    <EditText
        android:id="@+id/editText"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="4"
        android:hint="Search Location" />

    <Button
        android:id="@+id/search_button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="0.5"
        android:onClick="onMapSearch"
        android:text="Search" />

</LinearLayout>


<LinearLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="horizontal">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Type: " />

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:onClick="onNormalMap"
        android:text="Normal" />

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:onClick="onSatelliteMap"
        android:text="Satellite" />

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:onClick="onTerrainMap"
        android:text="Terrain" />

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:onClick="onHybridMap"
        android:text="Hybrid" />

</LinearLayout>

<fragment xmlns:android="http://schemas.android.com/apk/res/android"
    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"
    tools:context="com.viralandroid.googlemapsandroidapi.MapsActivity" />

</LinearLayout>

Как я могу исправить эту проблему? Даже если у меня есть только фрагмент карт Google без каких-либо других компонентов, он все равно блокирует весь экран редактирования ....

Ответы [ 2 ]

0 голосов
/ 21 июня 2019

Возможные решения:

  • перезапуск Android Studio (помогла моя проблема)
  • удалить Android Studio и установить его снова
  • проверка версий библиотеки build.gradle (при необходимости обновите их)
0 голосов
/ 19 июня 2019

Измените атрибут layout_height на wrap_content, затем выровняйте представление по родительскому основанию

    layout_weight="wrap_content"
    android:layout_alignParentBottom="true"

В противном случае вы можете использовать макет ограничения

В противном случае вместо тега фрагмента используйте макет фрейма, а затем в своем коде наведите фрагмент на макет фрейма.

Нужна помощь с накачкой фрагмента? Android: как загрузить фрагмент в FrameLayout

...