占地面积

时间:2018-06-14 12:08:28

标签: google-maps-android-api-2 android-studio-3.0

我正在研究有两个部分的活动。

  1. 显示Google自动完成下拉列表。
  2. 显示地图。
  3. 下面是我的布局代码

    <?xml version="1.0" encoding="utf-8"?>
    <android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        tools:context=".Activities.GoogleMaps.AutoCompleteWithMap">
    
        <fragment
            android:id="@+id/place_autocomplete_fragment"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:name="com.google.android.gms.location.places.ui.PlaceAutocompleteFragment"
            />
    
        <fragment
            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="wrap_content" />
    
    </android.support.constraint.ConstraintLayout>
    
      

    第一个片段显示D​​ropdown。
    第二个片段显示地图

    问题当我在上面使用时,我只能看到地图。以下是截图。

    enter image description here

    当我仅使用没有地图片段的Google自动完成下拉列表时。然后我可以看到正确的下拉列表。以下是截图。

    enter image description here

    我假设Map活动与自动完成重叠。

    你能建议如何解决它吗?

0 个答案:

没有答案