0

当您打开“我的地点”或进行路线搜索时,我想实现类似于 Google Maps 6 中的浮动上下文面板。(不可否认,我对此的体验仅在 Nexus7 平板电脑上)。下面的示例图像显示了我的意思的面板。

谁能告诉我这些是如何完成的?

示例 Gmap

4

1 回答 1

1

您可以通过简单地显示和隐藏布局(上下文面板)来做到这一点,布局如下:

<RelativeLayout
    <MapView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        ...
    />
    <MyContextView
        android:id="@+id/the_context_view"
        android:layout_width="400dp"
        android:layout_height="match_parent"
        android:layout_margin="10dp"
        android:layout_alignParentLeft="true"
        android:visibility="hidden"
        ...
    />
</RelativeLayout>

使用 View.setVisibility() 显示和隐藏它。

于 2012-10-07T07:15:55.767 回答