2010-09-03 43 views
1

我已經複製並粘貼來自本網站上的Form stuff示例的代碼。當我嘗試運行該項目時出現錯誤,該項目有一個帶有白色十字的小紅色正方形,但是當向下鑽入項目元素(使用eclipse)時,會出現錯誤元素。在eclipse的問題標籤中,我有以下文本試圖運行android教程時未定義的錯誤表格的東西

說明資源路徑位置類型 未解析的aapt錯誤(s)!檢查控制檯的輸出。 HelloFormStuff2未知Android包裝問題

但是在控制檯中沒有任何東西! 下面是代碼和元素,我使用...

HelloFormStuff2.java

package com.android.HelloLinearLayouts; 

import android.app.Activity; 
import android.os.Bundle; 
import android.view.View; 
import android.view.View.OnClickListener; 
import android.widget.Button; 
import android.widget.Toast; 

public class HelloFormStuff2 extends Activity { 
    /** Called when the activity is first created. */ 
    @Override 
    public void onCreate(Bundle savedInstanceState) { 
     super.onCreate(savedInstanceState); 
     setContentView(R.layout.main); 

     final Button button = (Button) findViewById(R.id.button); 
     button.setOnClickListener(new OnClickListener() { 
      public void onClick(View v) { 
       // Perform action on clicks 
       Toast.makeText(HelloFormStuff2.this, 
           "Beep Bop", 
           Toast.LENGTH_SHORT).show(); 
      } 
     }); 

    } 


} 

**res/drawable-hdpi/android-button.xml** 
<?xml version="1.0" encoding="utf-8"?> 
<selector xmlns:android="http://schemas.android.com/apk/res/android"> 
    <item android:drawable="@drawable/android_pressed" 
      android:state_pressed="true"/> 
    <item android:drawable="@drawable/android_focused" 
      android:state_focused="true"/> 
    <item android:drawable="@drawable/android_normal"/> 
</selector> 

**res/layout/main.xml** 
<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:orientation="vertical" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    > 
<TextView 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:text="@string/hello" 
    /> 
    <Button 
     android:id="@+id/button" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:padding="10dp" 
     android:background="@drawable/android_button" /> 
</LinearLayout> 

回答

6

不知道發生了什麼事的問題你的代碼,但在RES /佈局檢查/並確定沒有main-out.xml。如果有,請刪除它,執行Project> Clean,然後右鍵單擊該項目並選擇Run As> Android Application運行該應用程序。我一直試圖從任何地方做一個「run as」,這在Eclipse中不起作用(除非我做了其他錯誤);相反,它試圖運行xml文件,這一直給我提供了這個錯誤。

如果我完全不在基地,只需嘗試Project> Clean ...,然後單擊Project> Build All(如果未設置爲自動)。

+0

工作正常!我乾淨了,不知道問題是什麼,但它現在正在運行! :)謝謝你的幫助阿米戈! – Stephen 2010-09-05 10:27:13

+0

他應該接受你的答案! – 2011-01-12 18:10:12

1

在eclipse中,只需進入Project >> Clean,然後選擇你想要的項目並打上乾淨的 ......就像魔術一樣。

在我輸入了一個沒有真正擴展名的圖像之後,發生了這種事......奇怪。

相關問題