<fragment>从&#34; Fragment Layout&#34;中选择预览布局上下文菜单</fragment>

时间:2014-08-18 08:58:22

标签: android android-layout android-fragments

我在我的应用中包含一张地图。我正在做类似下面的事情: -

<RelativeLayout 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=".MainActivity" >

<Spinner
    android:id="@+id/spr_place_type"
    android:layout_width="wrap_content"
    android:layout_height="60dp"
    android:layout_alignParentTop="true" />

<Button
    android:id="@+id/btn_find"
    android:layout_width="wrap_content"
    android:layout_height="60dp"
    android:layout_alignParentTop="true"
    android:layout_toRightOf="@id/spr_place_type"
    android:text="@string/str_btn_find" />

<fragment 
    android:id="@+id/map"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@id/spr_place_type"
    class="com.google.android.gms.maps.SupportMapFragment" />

但是在图形布局中我收到以下错误: -

enter image description here

知道如何解决这个问题吗?

1 个答案:

答案 0 :(得分:0)

  1. 右键点击您的片段名称。
  2. 片段布局=&gt;选择你的片段名称。
  3. 祝你好运。 :)