繁体   English   中英

无法找出空指针异常

[英]cant figure out null pointer exception

好吧,所以我已经尝试了一个小时的解决方案,但是我找不到。 这是日志猫说空指针期望值的代码:

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;

public class splash extends Activity{
Button begin;
@Override
protected void onCreate(Bundle savedInstanceState) {
    // TODO Auto-generated method stub
    super.onCreate(savedInstanceState);
    begin=(Button) findViewById(R.id.button);
    begin.setOnClickListener(new View.OnClickListener() {

        public void onClick(View v) {
            // TODO Auto-generated method stub
            Intent startmenu=new Intent("com.life.project.menu");
            startActivity(startmenu);
        }
    });
}

}

这是xml文件:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" android:background="@drawable/icon3">

<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="You have 20 minutes to increase your status as much as possible." />

<Button
    android:id="@+id/button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Begin!"
    android:layout_gravity="center"
    android:typeface="monospace" />

 </LinearLayout>

所以当我尝试运行它时,它会得到一个空指针异常,并且我不知道它出了什么问题,有什么想法吗?

您需要在findViewById之前调用setContentView

setContentView(R.layout.the_layout_xml_name);
begin=(Button) findViewById(R.id.button);
// ...

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM