尝试运行android教程表单时出现未定义的错误

时间:2010-09-03 18:43:11

标签: java android

我已经复制并粘贴了本网站上的Form stuff示例中的代码。当我尝试运行项目时,我收到一个错误,项目有一个带有白色十字的红色正方形但是当深入到项目的元素(使用eclipse)时,有一个错误的元素。在eclipse的问题选项卡中,我有以下文字

描述资源路径位置类型 unparsed aapt error(s)!检查控制台输出。 HelloFormStuff2未知安卓包装问题

但控制台里什么都没有! 这是我正在使用的代码和元素......

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>

2 个答案:

答案 0 :(得分:6)

不确定问题中的代码发生了什么,但请在res / layout /下检查,并确保没有main-out.xml。如果有,删除它,做项目&gt;清理,然后右键单击项目并选择Run As&gt;运行应用程序。 Android应用程序。

来自Visual Studio,我一直试图从任何地方做一个“run as”,这在Eclipse中不起作用(除非我做错了其他事情);相反,它试图运行xml文件,它始终给我这个错误。

如果我完全偏离基础,只需尝试Project&gt;清洁......,然后项目&gt;全部构建(如果未设置为自动)。

答案 1 :(得分:1)

在eclipse中只需转到Project&gt;&gt; Clean然后选择你想要的项目并点击干净 ...就像魔法一样。

在我导入一个没有正确扩展的图像之后发生了这种情况......很奇怪。