我正在点击mapview显示自定义视图。该视图位于另一个xml布局文件中,该布局文件包含在mapview所在的xml布局中。
例如,自定义视图文件是map_tool_tip.xml,地图屏幕是mapscreen.xml。在mapscreen.xml中,代码编写如下:
<RelativeLayout
android:layout_width = "fill_parent"
android:layout_height = "fill_parent">
<com.google.android.maps.MapView
android:id="@+id/mapview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:enabled="true"
android:clickable="true"
android:apiKey="05HCG9bJJ4yk-8qGcV1_LoEI4J499NRLnkQIIlQ"
/>
<include android:id="@+id/layoutMapToolTip"
layout="@layout/map_tool_tip"
android:layout_centerInParent="true"
android:layout_marginLeft="15dp"
android:layout_marginTop="50dp"
android:layout_marginRight="15dp"
android:layout_marginBottom="30dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
</RelativeLayout>
布局工具提示可见性设置为GONE,仅在Tap上更改。现在,有时会发生的是工具提示永远不可见。我想,它在mapview下得到了。我不确定是什么问题。但它并不是每次都会发生,但确实会发生。
工具提示无法获得可见和解决方案的问题是什么?