无法实例化活动ComponentInfo - AndroidStudio

时间:2015-10-07 21:02:40

标签: java android android-studio

我是Android / Java开发的完全初学者,我非常感谢任何人能够就我遇到的问题给出的任何指示。这是MainActivity.java。

package com.example.harris.enterappman;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.EditText;
import android.widget.TextView;

public class MainActivity extends AppCompatActivity {

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

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

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    // Handle action bar item clicks here. The action bar will
    // automatically handle clicks on the Home/Up button, so long
    // as you specify a parent activity in AndroidManifest.xml.
    int id = item.getItemId();

    //noinspection SimplifiableIfStatement
    if (id == R.id.action_settings) {
        return true;
    }

    return super.onOptionsItemSelected(item);
}






EditText enterName;
TextView usersName;
String str = enterName.getText().toString();
public void getName(View view){

    enterName = (EditText) findViewById(R.id.enterName);
    usersName = (TextView) findViewById(R.id.helloNameView);
    usersName.setText(str);

}

public void printUsersName(){



}

}

每当我尝试运行程序时,它都会失败并显示错误:

java.lang.RuntimeException: Unable to instantiate activity             ComponentInfo{com.example.harris.enterappman/com.example.harris.enterappman.Main    Activity}: java.lang.NullPointerException
        at     android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2121)
        at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2245)
        at android.app.ActivityThread.access$800(ActivityThread.java:135)
        at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1196)
        at android.os.Handler.dispatchMessage(Handler.java:102)
        at android.os.Looper.loop(Looper.java:136)
        at android.app.ActivityThread.main(ActivityThread.java:5021)
        at java.lang.reflect.Method.invokeNative(Native Method)
        at java.lang.reflect.Method.invoke(Method.java:515)
        at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:827)
        at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:643)
        at dalvik.system.NativeStart.main(Native Method)
 Caused by: java.lang.NullPointerException
        at com.example.harris.enterappman.MainActivity.<init>(MainActivity.java:48)
        at java.lang.Class.newInstanceImpl(Native Method)
        at java.lang.Class.newInstance(Class.java:1208)
        at android.app.Instrumentation.newActivity(Instrumentation.java:1064)
        at     android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2112)
            at     android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2245)
            at android.app.ActivityThread.access$800(ActivityThread.java:135)
            at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1196)
            at android.os.Handler.dispatchMessage(Handler.java:102)
            at android.os.Looper.loop(Looper.java:136)
            at android.app.ActivityThread.main(ActivityThread.java:5021)
            at java.lang.reflect.Method.invokeNative(Native Method)
            at java.lang.reflect.Method.invoke(Method.java:515)
            at       com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:827)
            at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:643)
            at dalvik.system.NativeStart.main(Native Method)

从网上的其他帖子我得出的结论是问题与抽象方法有关?我无法弄清楚我的代码是如何错误的。

干杯, 哈里斯

4 个答案:

答案 0 :(得分:0)

String str = enterName.getText().toString();
此时

enterNamenull,因为您没有设置它。我们欢迎您将String str;声明为字段,但在enterName设置值之后才能对其进行初始化。

您有一些代码可以在一个有点奇怪的enterName方法中初始化getName(),但您似乎并没有这样做。

答案 1 :(得分:0)

您如何使用str设置enterName,因为enterName未初始化,因此null导致空指针异常

您必须在使用之前初始化enterName,因为您正在使用getName()方法进行初始化,然后使用它来获取文本

您的代码必须是这样的,您必须从onCreate()

调用此方法
public void getName(View view){

    enterName = (EditText) findViewById(R.id.enterName);
    usersName = (TextView) findViewById(R.id.helloNameView);
    usersName.setText(enterName.getText().toString());

}

答案 2 :(得分:0)

你没有正确初始化entername

使用:

....
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    enterName = (EditText) findViewById(R.id.enterName);
    usersName = (TextView) findViewById(R.id.helloNameView);
    usersName.setText(str);
}  
...

或者像这样使用它:

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

public void getName(){
    enterName = (EditText) findViewById(R.id.enterName);
    usersName = (TextView) findViewById(R.id.helloNameView);
    usersName.setText(str);
}

答案 3 :(得分:0)

当enterName为null时,调用enterName.getText(),这会导致NullPointerException。

我建议的几件事情:

  • 如果您想拥有对布局组件的引用,请在onCreate方法中调用它们:
enterName = (EditText) findViewById(R.id.enterName);
usersName = (TextView) findViewById(R.id.helloNameView);
  • 不要在类本身中调用方法(除了一些构造函数),在方法中调用它们(我引用str变量)。