无法检索图形布局

时间:2014-10-01 09:17:02

标签: android xml eclipse android-layout android-fragments

这是我的activity_main.xml。 当我尝试切换到图形视图时,它表示从" Fragment Layout"中选择一个片段。菜单。

另外,按钮和微调器都没有显示在我的布局中!!!!!

 <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 xmlns:android="http://schemas.android.com/apk/res/android"
    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" />

  </RelativeLayout>

我之前发布了这个但却无法解决问题......任何人都可以为我解决这个问题吗?

1 个答案:

答案 0 :(得分:0)

我尝试过这样的所有项目都显示得很好试试然后根据你的需要设置它们。

<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" >

<Button
  android:id="@+id/btn_find"
  android:layout_width="match_parent"
  android:layout_height="60dp"
  android:layout_alignParentTop="true"
  android:layout_centerHorizontal="true"
  android:layout_marginTop="40dp"
  android:text="@string/str_btn_find" />

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

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

</RelativeLayout>