大家好,我是Apps的新手,很抱歉:D
这个应用程序的想法是创建一个包含值的列表,选择一个随机值,从而选择一个列表项。您可以将列表保存到文本文件中。问题是,每当我打开它时,我的应用程序都会强制关闭。我不知道发生了什么,但确实有一只日志猫:
java.lang.RuntimeException: Unable to start activity ComponentInfo{com.frostbytedev.randomgenie/com.frostbytedev.randomgenie.Menu}: java.lang.NullPointerException
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2180)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2230)
at android.app.ActivityThread.access$600(ActivityThread.java:141)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1234)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:137)
at android.app.ActivityThread.main(ActivityThread.java:5041)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:511)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:793)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:560)
at dalvik.system.NativeStart.main(Native Method)
Caused by: java.lang.NullPointerException
at com.frostbytedev.randomgenie.Menu.onCreate(Menu.java:19)
at android.app.Activity.performCreate(Activity.java:5104)
at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1080)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2144)
这是我的Java:
package com.frostbytedev.randomgenie;
import android.content.Intent;
import android.os.Bundle;
import android.app.Activity;
import android.view.View;
import android.widget.Button;
public class Menu extends Activity implements View.OnClickListener{
Button OpenList, NewList;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.menu);
OpenList=(Button)findViewById(R.id.bOpenList);
NewList=(Button)findViewById(R.id.bNewList);
OpenList.setOnClickListener(this);
NewList.setOnClickListener(this);
}
@Override
public void onClick(View view) {
}
}
和XML:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:orientation="vertical"
android:layout_height="match_parent"
android:weightSum="100"
tools:context=".Menu">
<Button
android:layout_weight="50"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="New List"
android:id="@+id/button"
android:layout_below="@+id/bNewList"
android:layout_centerHorizontal="true"/>
<Button
android:layout_weight="50"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Open a List"
android:id="@+id/bOpenList"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"/>
</LinearLayout>
答案 0 :(得分:1)
在XML中,将第一个按钮的ID设置为@ + id / bNewList。您的onCreate无法找到该ID,因为您的第一个按钮设置为ID为“按钮”。
答案 1 :(得分:0)
上面的回答应该解决问题。
但是为了将来参考,LogCat非常适合调试。
如果您双击此行
at com.frostbytedev.randomgenie.Menu.onCreate(Menu.java:19)
在你的LogCat中,它将带你到具有问题的确切代码行,这是你在第19行的Menu类中的onCreate函数中的NullPointerException。
换句话说,NullPointerException意味着您设置的值为NULL且不能为NULL。