gpt4 book ai didi

java - 第一个 android 应用程序..需要帮助调试

转载 作者:行者123 更新时间:2023-11-29 05:21:00 24 4
gpt4 key购买 nike

我是 android 的新手,自 4 天以来我一直坚持使用我的第一个应用程序。我尝试关注有关 android 调试的每篇文章,但没有帮助。

这是我的 java 代码。

import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.TextView;
public class Example extends Activity {
TextView display;
int count;
Button k,j;
@Override
protected void onCreate(Bundle savedInstanceState) {
display=(TextView) findViewById(R.id.t1);
k=(Button) findViewById(R.id.b1);
j=(Button) findViewById(R.id.b2);
super.onCreate(savedInstanceState);
setContentView(R.layout.opencv_tracker);
k.setOnClickListener(new View.OnClickListener() {

@Override
public void onClick(View v) {
// TODO Auto-generated method stub
count++;
display.setText("YOUR TOTAL IS "+count);
}
});
j.setOnClickListener(new View.OnClickListener() {

@Override
public void onClick(View v) {
// TODO Auto-generated method stub
count--;
display.setText("YOUR TOTAL IS "+count);
}
});
}
}

我的 Activity.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="${packageName}.${activityClass}" >

<TextView
android:id="@+id/t1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="YOUR TOTAL IS 0"
android:textSize="35sp"
android:layout_gravity="center"
tools:ignore="HardcodedText" />

<Button
android:id="@+id/b1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/add"
android:textSize="25sp"/>

<Button
android:id="@+id/b2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/Hal"
android:textSize="25sp"/>
</LinearLayout>

并且 logcat 返回 NPE 错误。

E/AndroidRuntime( 1228): Caused by: java.lang.NullPointerException

我正在学习新波士顿教程。该应用程序试图做的是简单的加法和减法。并显示总结果。

最佳答案

这些代码:

display=(TextView) findViewById(R.id.t1);
k=(Button) findViewById(R.id.b1);
j=(Button) findViewById(R.id.b2);

把它放在这段代码之后:

      super.onCreate(savedInstanceState);
setContentView(R.layout.opencv_tracker);

NPE 主要在 setOnClickListener 上,因为这些 k 和 j 没有初始化

关于java - 第一个 android 应用程序..需要帮助调试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24768026/

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