android模拟器中未显示新项目输出

时间:2014-01-12 11:53:33

标签: android xml android-emulator

我创建了一个名为LinearLayouts的旧android项目,并在layout文件夹下的activity_main.xml中编写了一些代码。代码在模拟器上运行得非常好。但是现在我编辑了activity_main.xml并更改了代码。问题是编辑或更改的代码未显示在模拟器上。任何人都可以帮我找到解决这个问题的方法。下面是activity_main.xml中的旧代码和新代码。当我运行新代码时,模拟器显示旧的代码输出。不显示新代码或编辑的代码输出,而是显示旧代码输出本身。

我之前的activity_main.xml代码是:

<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">
<TextView
   android:id="@+id/label"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:text="Type Here:" 
     />

<EditText
   android:id="@+id/edittext1"
   android:layout_width="match_parent"
   android:layout_height="wrap_content"
   android:layout_below="@+id/label"
   android:layout_marginTop="10dp"
   android:ems="10" >
   <requestFocus />
</EditText>
</RelativeLayout>

我在activity_main.xml中新建或编辑的代码为:

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

<SlidingDrawer
    android:id="@+id/slidingDrawer1"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_centerHorizontal="true"
    android:layout_centerVertical="true"
    android:content="@+id/content"
    android:handle="@+id/handle" >

    <Button
        android:id="@+id/handle"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Handle" />

    <LinearLayout
        android:id="@+id/content"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical" >

     </LinearLayout>
  </SlidingDrawer>

</RelativeLayout>

1 个答案:

答案 0 :(得分:0)

从项目根目录中删除/ bin文件夹中的所有文件(AndroidManifest.xml除外),然后重试。