我想建立這樣的佈局:與谷歌地圖的是Android XML佈局問題
我的XML代碼:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:id="@+id/base">
<com.google.android.maps.MapView
android:id = "@+id/mapView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:enabled="true"
android:clickable="true"
android:apiKey="0HD__0DaIgzDb8nHjJsuggkHlW1MofMwg-xVCpA"
/>
<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content">
</EditText>
<LinearLayout android:id="@+id/linearLayout1"
android:gravity="bottom"
android:layout_width="fill_parent"
android:orientation="horizontal"
android:layout_height="wrap_content"
android:layout_weight="1">
<Button android:text="Cancel"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_weight="1" ></Button>
<Button android:text="Confirm"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_weight="1" ></Button>
</LinearLayout>
</LinearLayout>`
但結果出來總的谷歌地圖放在每一件事情上。
我該如何解決這個問題?
最好的解決方案! – user721413