如何使用Framelayout修复Android Studio Basic Map应用程序中的重叠按钮?

时间:2015-06-07 03:09:17

标签: android android-layout

我试图让我的按钮布局停止拍打。目前我正在使用Android平板电脑运行4.2平板电脑的基本地图。现在两个按钮放下引脚并在屏幕底部重叠绘制线条按钮。我知道有一个buttonGroup()函数或按钮布局,但我不确定如何实现它。

    <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MapActivity" >
    <fragment xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"  android:layout_width="match_parent"
    android:layout_height="match_parent" android:id="@+id/map" tools:context=".MapsActivity"
    android:name="com.google.android.gms.maps.SupportMapFragment" />

<Button
android:id="@+id/button1"
android:layout_width="300dp"
android:layout_height="48dp"
android:orientation="horizontal"
android:layout_gravity="bottom"
android:text="Drop new pin!"/>

<Button
android:id="@+id/button2"
android:layout_width="300dp"
android:layout_height="48dp"
android:orientation="horizontal"
android:layout_gravity="bottom"
android:text="Draw Line" />

 </FrameLayout>

1 个答案:

答案 0 :(得分:0)

为什么你不使用像RelativeLayout,LinearLayout这样的其他类型的布局呢?当你频繁使用FrameLayout时它会重叠。

希望对你有帮助