我已經複製並粘貼來自本網站上的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>
工作正常!我乾淨了,不知道問題是什麼,但它現在正在運行! :)謝謝你的幫助阿米戈! – Stephen 2010-09-05 10:27:13
他應該接受你的答案! – 2011-01-12 18:10:12