我在相对布局的情况下停留了两天。我的屏幕按顺序布局
所以很好。但现在我想在地图上的某处添加刷新按钮,但我发现线性布局是不可能的。所以我尝试了相对布局,但甚至无法获得如上所述的屏幕。 我的页脚布局总是显示在顶部..这是我的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>
任何帮助将不胜感激。提前谢谢
答案 0 :(得分:2)
试试这个。使用框架布局并将mapview和按钮放在框架布局中。因此按钮将放置在mapview上方。根据您的需要放置它。
<?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" />
<FrameLayout android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_width="1.0" >
<com.google.android.maps.MapView
android:id="@+id/map"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1.63"
android:apiKey="0VkXbAOFvAq7b6uaGHSmnS2a2VosPxoS6ceHY_g"
android:clickable="true" >
</com.google.android.maps.MapView>
<Button android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="right" />
</FrameLayout>
<include
android:id="@+id/include2"
android:layout_marginBottom="38dp"
layout="@layout/bottom_layout"/>
</LinearLayout>
希望这有助于...... !!!
答案 1 :(得分:0)