我正在研究有两个部分的活动。
下面是我的布局代码
<?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>
第一个片段显示Dropdown。
第二个片段显示地图
问题当我在上面使用时,我只能看到地图。以下是截图。
当我仅使用没有地图片段的Google自动完成下拉列表时。然后我可以看到正确的下拉列表。以下是截图。
我假设Map活动与自动完成重叠。
你能建议如何解决它吗?