У меня есть карта google с выдвижным ящиком. Виджет по карте google, но я хотел бы поместить мои карты Google над содержимым из скользящего ящика (не выше скользящего ящика). Я не могу разместить имущество, как указано выше или ниже, на @+id/content
, потому что LinearLayout
не является дочерним лицом RelativeLayout
.android: SlidingDrawer, RelativeLayout и GoogleMap
Итак, мой вопрос: возможно ли это?
Единственный способ, которым я нашел, чтобы поставить 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>