gpt4 book ai didi

Android 应用错误 “Unfortunately App has Stopped”

转载 作者:行者123 更新时间:2023-11-30 03:31:22 25 4
gpt4 key购买 nike

你好,我在运行应用程序时遇到问题,当它运行不正常时,它会打开,但是当我按下按钮时,告诉我应用程序已停止并且无法运行:“不幸的是,应用程序已停止”。这是我的简单代码,我希望我能尽快得到答案......谢谢分配:)

package com.stefan.stefan1;

import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;

public class MainActivity extends Activity {

TextView textView1;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

final Button button1 = (Button) findViewById(R.id.button1);
button1.setOnClickListener(new View.OnClickListener() {

@Override
public void onClick(View v) {
textView1.setText("Hello Im Stefan !");
}
});

}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}

}

你好我又遇到了新问题我添加了另一个标签(textView2)并且我试图再次添加这一行textView2 =(TextView)findViewById(R.id.textView2);但是给我在类“R.java”中添加一些东西的错误请帮助.. :/

最佳答案

您忘记初始化 textView1

所以当你在做的时候:

textView1.setText("Hello Im Stefan !");

它抛出一个 NullPointerException 并停止您的应用。

如果您在布局中定义了 TextView ,请在 setContentView 之后添加

textView1 = (TextView) findViewById(R.id.idOfYourTextView);

P.S:当您遇到此类错误时,您应该始终提供堆栈跟踪(logcat)。

关于Android 应用错误 “Unfortunately App has Stopped”,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17425481/

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