这是我的functions.php
文件,当我尝试添加按钮字段时,我收到错误maps_activity.xml
。
Multiple root tags
当我尝试添加
时<fragment xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/map"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
我收到错误消息<Button
android:id="@+id/button"
android:layout_width="146dp"
android:layout_height="wrap_content"
android:text="Open Store" />
。
我的MapsActivity课程直到Multiple root tags
方法
onCreate
谢谢!
答案 0 :(得分:2)
每个XML布局文件只能有一个&#34; root&#34;标签。通常这会是某种ViewGroup
;常见示例包括LinearLayout
,FrameLayout
,ConstraintLayout
和RelativeLayout
。
正确的选择取决于您期望的目标。考虑到您只提到了Google地图和Button
,要问的问题是您是希望这两件事彼此相邻(或者彼此上下)或者每件事之上。其他
如果您希望它们高于/低于对方,请选择LinearLayout
,然后写下这样的内容:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<fragment
android:id="@+id/map"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"/>
<Button
android:id="@+id/button"
android:layout_width="146dp"
android:layout_height="wrap_content"
android:text="Open Store"/>
</LinearLayout>
如果您希望按钮浮动在地图顶部,请将LinearLayout
更改为FrameLayout
(并移除orientation
属性,因为框架布局不具有方向)。
无论哪种方式,您都必须遵守所有布局只能有一个根的规则。这并不意味着所有布局都只能有一个视图,但只要你有一个以上的视图,就必须找到一个好的方框来将它们全部放入。
答案 1 :(得分:0)
尝试相对或线性布局作为父布局,并在父布局内添加片段和按钮,如下所示:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
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.commonutils.MapsActivity" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:gravity="center">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="GO" />
</LinearLayout>