我嘗試使用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,我的列表和mapview不會填充屏幕的高度: http://img862.imageshack.us/img862/9442/bugzt.png 我現在的代碼:http://pastebin.com/t2ie9rs2 – kudos