创建活动时出现NullPointerException

时间:2013-10-02 06:28:09

标签: java android nullpointerexception

  

这是我的代码LoginActivity.java文件

 package com.example.crims;
 import android.os.Bundle;
 import android.app.Activity;
 import android.content.Intent;
 import android.view.View;
 import android.widget.TextView;

 public class LoginActivity extends Activity {

TextView screen;
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    setContentView(R.layout.activity_login);
    screen = (TextView) findViewById(R.id.link_to_register);
     // Listening to register new account link
    screen.setOnClickListener(new View.OnClickListener() {

        public void onClick(View v) {
            // Switching to Register screen
            Intent i = new Intent(getApplicationContext(), RegisterActivity.class);
            startActivity(i);
        }
    });
 }
}
  

这是我的'activity_login.xml'文件的代码

 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:tools="http://schemas.android.com/tools"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:paddingBottom="@dimen/activity_vertical_margin"
 android:paddingLeft="@dimen/activity_horizontal_margin"
 android:paddingRight="@dimen/activity_horizontal_margin"
 android:paddingTop="@dimen/activity_vertical_margin"
 tools:context=".LoginActivity" >

 <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/hello_world" />

</RelativeLayout>`
  

最后这是我的清单文件

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.crims"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="18" />

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name="com.example.crims.LoginActivity"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity android:name=".RegisterActivity"
              android:label="Register New Account">

    </activity>
</application>

</manifest>  
  

所有这些文件都在这里,我想找到我的错误,因为我是Android应用程序开发的新手......

2 个答案:

答案 0 :(得分:2)

这里有NullPointerException(NPE):

10-01 21:02:07.580: E/AndroidRuntime(1299):
   at com.example.crims.LoginActivity.onCreate(LoginActivity.java:17)

因此,请检查LoginActivity.java的第17行(您可以在logcat视图中双击此消息,然后您将导航到此行)。

看来,第17行是这样的:

registerScreen.setOnClickListener(new View.OnClickListener() {

由于这是NPE,registerScreennull。所以,你应该检查它为什么是null。这是因为Activity无法在上面找到它,而是返回null代替:

TextView registerScreen = (TextView) findViewById(R.id.link_to_register);

这可能是以下两种可能之一:要么在activity_login.xml中没有id为“link_to_register”的小部件,要么是其他错误:)

请检查此信息并显示您的activity_login.xml文件。

答案 1 :(得分:0)

听兄弟拿这个代码。根据你改变它。

public class MainActivity extends Activity {

TextView screen;

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



    screen = (TextView) findViewById(R.id.screen);

            // Listening to register new account link
           screen.setOnClickListener(new View.OnClickListener() {

            public void onClick(View v) {
                // Switching to Register screen
                Intent i = new Intent(getApplicationContext(), Register.class);
                startActivity(i);
            }
        });
    } 


}

如果你不了解它,你也需要在manifest.xml文件中注册你的活动。