2016-09-14 4 views
0

Meine App ist abgestürzt, sobald ich es ausführe. Ich brauche Hilfe. Vielen Dank im Voraus.Android Studio :: E/AndroidRuntime: FATALE AUSNAHME:

Ich bin ein bisschen neu auf Android Studio, nicht sicher, was ich falsch gemacht habe.

Fehler:

09-14 02:55:11.013 4502-4502/com.example.adrian.loginregister E/AndroidRuntime: FATAL EXCEPTION: main 
                       Process: com.example.adrian.loginregister, PID: 4502 
                       java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.adrian.loginregister/com.example.adrian.loginregister.LoginActivity}: java.lang.NullPointerException: Attempt to invoke virtual method 'void android.widget.TextView.setOnClickListener(android.view.View$OnClickListener)' on a null object reference 
                        at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2416) 
                        at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2476) 
                        at android.app.ActivityThread.-wrap11(ActivityThread.java) 
                        at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1344) 
                        at android.os.Handler.dispatchMessage(Handler.java:102) 
                        at android.os.Looper.loop(Looper.java:148) 
                        at android.app.ActivityThread.main(ActivityThread.java:5417) 
                        at java.lang.reflect.Method.invoke(Native Method) 
                        at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726) 
                        at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616) 
                       Caused by: java.lang.NullPointerException: Attempt to invoke virtual method 'void android.widget.TextView.setOnClickListener(android.view.View$OnClickListener)' on a null object reference 
                        at com.example.adrian.loginregister.LoginActivity.onCreate(LoginActivity.java:23) 
                        at android.app.Activity.performCreate(Activity.java:6237) 
                        at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1107) 
                        at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2369) 
                        at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2476)  
                        at android.app.ActivityThread.-wrap11(ActivityThread.java)  
                        at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1344)  
                        at android.os.Handler.dispatchMessage(Handler.java:102)  
                        at android.os.Looper.loop(Looper.java:148)  
                        at android.app.ActivityThread.main(ActivityThread.java:5417)  
                        at java.lang.reflect.Method.invoke(Native Method)  
                        at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726)  
                        at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616) 

Im Folgenden sind die LoginActivity.java

package com.example.adrian.loginregister; 

import android.content.Intent; 
import android.support.v7.app.AppCompatActivity; 
import android.os.Bundle; 
import android.view.View; 
import android.widget.Button; 
import android.widget.EditText; 
import android.widget.TextView; 

public class LoginActivity extends AppCompatActivity { 

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

     final EditText etUsername = (EditText) findViewById(R.id.etUsername); 
     final EditText etPassword = (EditText) findViewById(R.id.etPassword); 
     final Button bLogin = (Button) findViewById(R.id.bLogin); 
     final TextView bRegister = (TextView) findViewById(R.id.bRegister); 

     bRegister.setOnClickListener(new View.OnClickListener(){ 
      @Override 
      public void onClick(View v) { 
       Intent registerIntent = new Intent(LoginActivity.this, RegisterActivity.class); 
       LoginActivity.this.startActivity(registerIntent); 
      } 
     }); 
    } 
} 

Dies ist die activty_login.xml

<?xml version="1.0" encoding="utf-8"?> 
<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="com.example.adrian.loginregister.LoginActivity"> 

    <EditText 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:id="@+id/etUsername" 
     android:layout_alignParentTop="true" 
     android:layout_alignParentLeft="true" 
     android:layout_alignParentStart="true" 
     android:layout_alignParentRight="true" 
     android:layout_alignParentEnd="true" 
     android:hint="Username" /> 

    <EditText 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:id="@+id/etPassword" 
     android:layout_below="@+id/etUsername" 
     android:layout_alignParentLeft="true" 
     android:layout_alignParentStart="true" 
     android:layout_alignRight="@+id/etUsername" 
     android:layout_alignEnd="@+id/etUsername" 
     android:hint="Password" /> 

    <Button 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:text="Login" 
     android:id="@+id/bLogin" 
     android:layout_below="@+id/etPassword" 
     android:layout_alignParentLeft="true" 
     android:layout_alignParentStart="true" 
     android:layout_alignParentRight="true" 
     android:layout_alignParentEnd="true" /> 

    <TextView 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:textAppearance="?android:attr/textAppearanceMedium" 
     android:text="Register here" 
     android:id="@+id/tvRegister" 
     android:layout_below="@+id/bLogin" 
     android:layout_centerHorizontal="true" /> 
</RelativeLayout> 

Ich habe stundenlang, um herauszufinden versucht, . Es scheint nicht zu funktionieren. Stürzt jedes Mal ab, wenn ich versuche, es auszuführen.

+5

Mögliches Duplikat von [Android - Nullzeiger Ausnahme - findViewById()] (http://StackOverflow.com/Questions/19078461/android-null-pointer-exception-findviewbyid) –

+0

Sind Sie auch neu in Java? Sie haben eine NullPointerException. Auch einen Blick wert - [Was ist eine NullPointerException] (http://stackoverflow.com/questions/218384/what-is-a-nullpointerexception-and-how-do-fix-it) und [Wie liest man a stackoverce] (http://stackoverflow.com/questions/3988788/what-is-a-stack-trace-and-how-cani--use-it-to-debug-my-application-errors) –

+0

Dann. 'bRegister' möchte vielleicht ein Button sein ja? Normalerweise setzen Sie keine Klick-Listener auf TextViews –

Antwort

0

versuchen

final TextView bRegister = (TextView) findViewById(R.id.bRegister); 

Linie

final TextView bRegister = (TextView) findViewById(R.id.tvRegister); 

becuase in Ihrer xml Datei, die Sie Register TextView zu ändern Id-tvRegister geben. Sie geben in der Initialisierung Id falsch.

+0

Vielen Dank! Ich habe das nicht einmal bemerkt, es hat das Problem gelöst. Ich kann mich immer noch nicht erinnern, warum ich bRegister anrufe. Danke noch einmal –

Verwandte Themen