Yo - 私は同じアクティビティにウェブビューとマップビューを配置しようとしていますが、少し問題があります。私は、Webビューが画面の半分に生息するようにしようとしており、残りの半分はマップビューで占有されています。ここに私のコードは次のとおりです。WebviewとGoogleマップ
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TableLayout
android:id = "@+id/embedded_map_Tble"
android:layout_width = "fill_parent"
android:layout_height = "fill_parent"
>
<TableRow
android:layout_weight = "1"
>
<WebView
android:id = "@+id/embedded_map_WebView"
android:layout_width = "fill_parent"
android:layout_height = "fill_parent"
android:layout_weight = "1"
/>
</TableRow>
<TableRow>
<com.google.android.maps.MapView
android:id="@+id/mapView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight = "1"
android:layout_below = "@id/embedded_map_WebView"
android:enabled="true"
android:clickable="true"
android:apiKey="MY_API_KEY"
/>
</TableRow>
</TableLayout>
</RelativeLayout>
あなたは、この「悩み」を記述することはできますか? – bschultz
ええ、それは基本的にマップを部分的にロードしてからマップが消え、Webビューが引き継ぎます - マップが存在しなかったようです – Katana24