您好我正在构建一个地图应用程序并尝试使用它,所以当您点击制造商时它会打开滑动窗格。它按照我想要的方式工作,但当窗格关闭时,你仍然可以看到它有点悬垂。我想在屏幕上隐藏它,所以你看到的只是地图片段。
activity_main.xml中
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.SlidingPaneLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/sliding_layout"
android:layout_width="fill_parent"
android:layout_height="match_parent" >
<fragment
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/map"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:layout_margin="0dp"
class="com.google.android.gms.maps.SupportMapFragment" />
<fragment
android:id="@+id/photo"
android:name="com.example.mapapp.SliderFragment"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:layout_margin="0dp" />
</android.support.v4.widget.SlidingPaneLayout>
见下图
答案 0 :(得分:0)
我知道这是一个非常晚的答案,你可能已经找到了解决方案,但你想要的功能听起来像抽屉布局。您可以从这些官方Android文档中找到有关如何实现这些内容的更多信息:
https://developer.android.com/training/implementing-navigation/nav-drawer.html https://developer.android.com/reference/android/support/v4/widget/DrawerLayout.html