gpt4 book ai didi

java - 尝试运行 android 教程 Form stuff 时出现未定义错误

转载 作者:行者123 更新时间:2023-11-29 06:46:47 25 4
gpt4 key购买 nike

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

描述资源路径位置类型未解析的 aapt 错误!检查控制台的输出。 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>

最佳答案

不确定您的代码在问题中发生了什么,但请检查 res/layout/并确保没有 main-out.xml。如果有,请将其删除,执行“项目”>“清理”,然后通过右键单击项目并选择“运行方式”>“Android 应用程序”来运行应用程序。

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

如果我完全偏离基础,只需尝试“项目”>“清理...”,然后“项目”>“全部构建”(如果它未设置为自动)。

关于java - 尝试运行 android 教程 Form stuff 时出现未定义错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3638660/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com