Android:如何处理相对布局

时间:2012-09-27 06:05:25

标签: android android-mapview relativelayout

我在相对布局的情况下停留了两天。我的屏幕按顺序布局enter image description 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>

任何帮助将不胜感激。提前谢谢

2 个答案:

答案 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)

RelativeLayout可能就是你想要的。编程可能很困难,因为您需要定义底部的View first ,然后是屏幕上方的Views。

查看these tutorials以获取有关使用RelativeLayouts的更多帮助。学习的最佳方式是做到这一点!尝试各种布局,直到您弄清楚规则的工作方式。然后将它重新创建为RelativeLayout应该非常简单。