RelativeLayout
を使用してListView
とMapView
を並べて表示しようとしています。しかし私のMapView
は常にListView
の上です。ここでRelativeLayoutと並んでListView/MapView
は私のmain.xmlレイアウトです:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<com.google.android.maps.MapView
android:id="@+id/mapview"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:clickable="true"
android:apiKey="0uZMgFMDqZETDVYg843CSoC8rHyuV01ypwz2C2Q"
android:layout_alignParentRight="true" android:layout_alignParentTop="true" />
<ListView android:id="@+id/list" android:layout_width="fill_parent"
android:layout_height="wrap_content" android:smoothScrollbar="true"
android:background="#fff" android:cacheColorHint="#fff"
android:fastScrollEnabled="false" android:clickable="true"
android:layout_alignParentLeft="true" android:layout_alignParentTop="true"
android:layout_marginBottom="36dp" />
</RelativeLayout>
重量が「1」のTableLayoutで試してみると、リストとマップビューが画面の高さに表示されません。ありがとうございます。 http://img862.imageshack.us/img862/9442/bugzt.png 現在のコード:http://pastebin.com/t2ie9rs2 – kudos