简体   繁体   English

Android Studio开发错误

[英]Android Studio Development Error

I have code from a tutorial video that, when run, closes the application automatically. 我有一个教程视频中的代码,该视频在运行时会自动关闭该应用程序。 I have tried to debug it and get the error below - 我试着调试它并得到以下错误-

03-27 23:42:14.538    1330-1330/com.testing W/dalvikvm﹕ threadid=1: thread exiting with uncaught exception (group=0xb3ababa8)
03-27 23:42:14.598    1330-1330/com.testing E/AndroidRuntime﹕ FATAL EXCEPTION: main
    Process: com.testing, PID: 1330
    java.lang.RuntimeException: Unable to start activity ComponentInfo{com.testing/com.testing.MainActivity}: java.lang.NullPointerException
            at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2195)
            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:5017)
            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:779)
            at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:595)
            at dalvik.system.NativeStart.main(Native Method)
     Caused by: java.lang.NullPointerException
            at com.testing.MainActivity.onCreate(MainActivity.java:35)
            at android.app.Activity.performCreate(Activity.java:5231)
            at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1087)
            at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2159)
            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:5017)
            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:779)
            at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:595)
            at dalvik.system.NativeStart.main(Native Method)

.

  package com.testing;

    import android.support.v7.app.ActionBarActivity;
    import android.support.v7.app.ActionBar;
    import android.support.v4.app.Fragment;
    import android.os.Bundle;
    import android.text.Editable;
    import android.text.TextWatcher;
    import android.view.LayoutInflater;
    import android.view.Menu;
    import android.view.MenuItem;
    import android.view.View;
    import android.view.ViewGroup;
    import android.os.Build;
    import android.widget.Button;
    import android.widget.EditText;
    import android.widget.TabHost;

    public class MainActivity extends ActionBarActivity {

        EditText Nome, Phone, Email;


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


            Nome = (EditText) findViewById(R.id.txtNome);
            Phone = (EditText) findViewById(R.id.txtPhone);
            Email = (EditText) findViewById(R.id.txtEmail);
            TabHost tabHost = (TabHost) findViewById(R.id.tabHost);

            tabHost.setup();

            TabHost.TabSpec tabSpec = tabHost.newTabSpec("Creator");
            tabSpec.setContent(R.id.tabCreator);
            tabSpec.setIndicator("Creator");
            tabHost.addTab(tabSpec);

            tabSpec = tabHost.newTabSpec("list");
            tabSpec.setContent(R.id.tabContact);
            tabSpec.setIndicator("list");
            tabHost.addTab(tabSpec);

            final Button addBtn = (Button) findViewById(R.id.bntEnviar);
        }


        @Override
        public boolean onCreateOptionsMenu(Menu menu) {

            // Inflate the menu; this adds items to the action bar if it is present.
            getMenuInflater().inflate(R.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();
            if (id == R.id.action_settings) {
                return true;
            }
            return super.onOptionsItemSelected(item);
        }

}

What am I doing wrong? 我究竟做错了什么?

My aplication file is under the debug file, just slide the bar down. 我的应用程序文件位于调试文件下,只需将滑块向下滑动即可。

you have a null pointer exception, meaning, you are trying to use an object which you probably did not initialize. 您有一个空指针异常,这意味着您正在尝试使用可能未初始化的对象。

It would really help if you post your activity class. 如果您发布活动课程,那将真的有帮助。

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

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