我改变了布局的eclipse背景并添加了新视图(按钮)。
我启动了我的应用程序,但在模拟器中没有任何改变!
我能做什么? Mayby这是一个Eclipse bug?
答案 0 :(得分:0)
我从互联网上下载了这个项目。最初它有黑色背景。 我添加了新视图 - 一切都很好。 但在我开始改变背景后 - 并出现了这个错误
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>
答案 1 :(得分:0)
每当您想再次测试应用程序时,请勿在模拟器中单击应用程序的图标。但是,选择您的项目,然后单击
如果这不起作用。尝试清除您的项目:Project
&gt;&gt;&gt; Clean