我有一个带滑动抽屉的谷歌地图。该小部件位于谷歌地图上方,但我想将我的谷歌地图放在滑动抽屉的内容上方(而不是滑动抽屉上方)。我不能在上面或下面放置一个属性,@+id/content
因为LinearLayout
它不是RelativeLayout
.
所以我的问题是:有可能吗?
我找到的唯一方法是android:layout_marginBottom
在地图上放一个但不是很干净
代码更明确:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:custom="http://schemas.android.com/apk/res/com"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<fragment
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="match_parent"
class="com.google.android.gms.maps.SupportMapFragment" />
<RelativeLayout
android:id="@+id/progress_bar_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#40000000"
android:visibility="gone" >
<ProgressBar
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true" />
</RelativeLayout>
<ImageView
android:id="@+id/refresh"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_marginTop="10dp"
android:background="@drawable/btn_refresh_map"
android:padding="4dp"
android:visibility="gone" />
<com.ui.custom.WrappingSlidingDrawer
xmlns:my="http://schemas.android.com/apk/res/com.ecab"
android:id="@+id/bottom"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:orientation="vertical"
android:content="@+id/content"
android:handle="@+id/handle"
android:background="#00000000" >
<LinearLayout
android:id="@+id/handle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/light_gray"
android:orientation="vertical" >
[...]
</LinearLayout>
<LinearLayout
android:id="@+id/content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/light_gray"
android:orientation="vertical" >
[...]
</LinearLayout>
</com.ui.custom.WrappingSlidingDrawer>
</RelativeLayout>