我兩天前的堅持與相對layout..here我是線性佈局安卓:如何應對相對佈局
所以它的精細我的屏幕快照。但現在我想在地圖上的某個地方添加刷新按鈕,但是我發現它不可能具有線性佈局。所以我試圖在相對佈局,但不能甚至得到如上屏幕。 我的頁腳佈局始終在頂部顯示。這裏是我的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>
任何幫助將不勝感激。在此先感謝
你在哪裏想要把刷新按鈕? – Renjith
感謝reply..i希望把它在MapView的 –