私は次のxmlレイアウトファイルを持っていますが、表示されるのはマップだけで、ボタンは表示されません。ホア私はそれを行うことはできますか?mapviewでボタンを追加する方法は?
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android">
<com.google.android.maps.MapView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/mapview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:clickable="true"
android:apiKey="0ObBrVVNjsIA__m7D1lmsednIXg6pcDRBG-Qvfg"/>
<LinearLayout
android:id="@+id/linearLayout2"
android:layout_height="wrap_content"
android:weightSum="1.0"
android:orientation="horizontal"
android:layout_gravity="bottom"
android:layout_width="match_parent">
<Button
android:text="Button"
android:id="@+id/button1"
android:layout_weight="0.5"
android:layout_height="wrap_content"></Button>
<Button
android:text="Button"
android:id="@+id/button2"
android:layout_weight="0.5"
android:layout_height="wrap_content"></Button>
</LinearLayout>
</LinearLayout>