我更改了布局的eclipse背景并添加了新视图(按钮)。
我启动了我的应用程序,但在模拟器中没有任何改变!
我能做什么?也许这是一个 Eclipse 错误?
我从网上下载了这个项目。最初它有黑色背景。我添加了新视图 - 一切正常。但是在我开始改变背景之后 - 并出现了这个错误
XML:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@android:color/white"
android:orientation="vertical" >
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />
<EditText
android:id="@+id/txtInd"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10" >
<requestFocus />
</EditText>
<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
</ListView>
</LinearLayout>
每当您想再次测试应用程序时,请勿在模拟器中单击应用程序的图标。但是,选择您的项目,然后单击
如果这不起作用。尝试从以下位置清理您的项目:Project
>>>Clean