gpt4 book ai didi

java - 需要添加 float 操作按钮错误android中fragment页面中的多个根标签

转载 作者:行者123 更新时间:2023-12-02 02:56:14 28 4
gpt4 key购买 nike

我想在 xml 页面上添加一个 float 操作按钮,但我有以下 fragment ,当我添加操作 xml 编码时,它说多个根标签需要帮助解决这个问题。

 <fragment xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:map="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/map"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.findme.vysystems.googlemaps1.MapsActivity"

/>

<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_margin="@dimen/fab_margin"
android:src="@android:drawable/ic_dialog_email" />

最佳答案

试试这个

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">

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

<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_margin="@dimen/fab_margin"
android:src="@android:drawable/ic_dialog_email" />

</LinearLayout>

关于java - 需要添加 float 操作按钮错误android中fragment页面中的多个根标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43041215/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com