私は相対レイアウトで2日間立ち往生しています..これが線形レイアウトの私のスクリーンスナップです
それで大丈夫です。しかし、マップのどこかに更新ボタンを追加したいのですが、線形レイアウトでは不可能であることがわかりました。だから私は相対的なレイアウトで試しましたが、上記のように画面を取得することさえできません。私のフッターレイアウトは常に上部に表示されます..これが私のxmlコードです
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/LinearLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<!-- include title bar for all screen -->
<include
android:id="@+id/include1"
layout="@layout/titlebar_layout" />
<com.google.android.maps.MapView
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1.63"
android:apiKey="0VkXbAOFvAq7b6uaGHSmnS2a2VosPxoS6ceHY_g"
android:clickable="true" >
</com.google.android.maps.MapView>
<include
android:id="@+id/include2"
android:layout_marginBottom="38dp"
layout="@layout/bottom_layout"/>
</LinearLayout>
どんな助けでも大歓迎です。前もって感謝します