我试图像谷歌地图中的上拉菜单(见图片)一样进行布局,在那里我可以从屏幕底部向上拉并查看地图上某点的更多详细信息。
我目前正在使用DrawerLayout拉
侧视图但我会使用与谷歌地图相同的布局。这是一些图像: http://imgur.com/a/kuSKu#0
此外,这是我现在在主要活动中使用的代码:
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MapActivity"
tools:ignore="MergeRootFrame">
<fragment
android:id="@+id/main_fragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:name="neocom.dealerbook.MapFragment"
tools:layout="@layout/fragment_map" />
<fragment android:id="@+id/side_panel"
android:layout_width="240dp"
android:layout_height="match_parent"
android:layout_gravity="start"
android:choiceMode="singleChoice"
android:dividerHeight="0dp"
android:name="neocom.dealerbook.SideBarFragment"
tools:layout="@layout/side_bar"/>
</android.support.v4.widget.DrawerLayout>
答案 0 :(得分:16)
现在我们可以使用Android支持库23.2中的Design Support Library: Bottom Sheets!
答案 1 :(得分:2)
这个人做了我需要的所有事情AndroidSlidingUpPanel