Макет нижней панели в android

Это мой исходный xml-код для схемы карты - нижняя панель. Я показываю огромную карту на экране, и мне нужен макет высотой 30dp в нижней части экрана для отображения нескольких вкладок, таких как изображения. Как сдвинуть горизонтальный линейный макет в нижнюю часть страницы?

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_height=" what here ? "
    android:layout_width="fill_parent"
    android:orientation="vertical">
    <com.google.android.maps.MapView
        android:id="@+id/map_view"
        Map goes here. Almost full screen. Exactly full - 30dp;

        />
    <LinearLayout>
         I want 3 images here. Bottom of the screen.
    </LinearLayout>
</RelativeLayout>
5
задан Jaseem 30 December 2011 в 11:40
поделиться