nikhil arora Ответов: 0

Мое приложение для входа в систему не работает в android


Мое приложение для входа в систему не работает на Android.Всякий раз, когда я запускаю приложение на мобильном телефоне или AVD, оно говорит, что, к сожалению, приложение остановилось.
Приложение выходит из строя

Где я ошибся?
кто-нибудь может мне помочь?

Что я уже пробовал:

MainActivity

   package com.example.nikhilarora.loginform;
   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;
            
   public class MainActivity extends AppCompatActivity implements View.OnClickListener {
        
      EditText editText, editText2;
      Button b;
        
      @Override
      protected void onCreate(Bundle savedInstanceState) {
         super.onCreate(savedInstanceState);
         setContentView(R.layout.activity_main);
         editText = (EditText) findViewById(R.id.editText);
         editText2 = (EditText) findViewById(R.id.editText2);
         b = findViewById(R.id.button);
         b.setOnClickListener(this);
      }
        
      @Override
      public void onClick(View v) {
         if (v.getId() == R.id.button) {
            if (editText.getText().toString().equals("admin") && editText.getText().toString().equals("admin")) {
               Intent i = new Intent(this, Main2Activity.class);
               startActivity(i);
            }
        }
     }
  }
        
  Xml file
  <?xml version="1.0" encoding="utf-8"?>
  <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:app="http://schemas.android.com/apk/res-auto"
  xmlns:tools="http://schemas.android.com/tools"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  tools:context="com.example.nikhilarora.loginform.MainActivity">
        
  <TextView
  android:id="@+id/textView"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_alignParentLeft="true"
  android:layout_alignParentStart="true"
  android:layout_below="@+id/imageView2"
  android:layout_marginLeft="14dp"
  android:layout_marginStart="14dp"
  android:layout_marginTop="15dp"
  android:textStyle="bold"
  android:text="UserName" />
        
  <EditText
  android:id="@+id/editText"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_alignLeft="@+id/textView"
  android:layout_alignStart="@+id/textView"
  android:layout_below="@+id/textView"
  android:hint="Name"
  android:ems="10"
  android:inputType="textPersonName"
  android:text="" />
        
  <ImageView
  android:id="@+id/imageView2"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:adjustViewBounds="true"
  android:maxWidth="80dp"
  android:maxHeight="100dp"
  android:scaleType="fitCenter"
  android:layout_marginLeft="125dp"
  app:srcCompat="@drawable/login" />
        
  <TextView
  android:id="@+id/textView2"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_alignEnd="@+id/textView"
  android:layout_alignRight="@+id/textView"
  android:layout_below="@+id/editText"
  android:layout_marginTop="20dp"
  android:text="TextView" />
        
  <EditText
  android:id="@+id/editText2"
  android:layout_width="wrap_content"
  android:hint="password"
  android:layout_height="wrap_content"
  android:layout_alignLeft="@+id/textView2"
  android:layout_alignStart="@+id/textView2"
  android:layout_below="@+id/textView2"
  android:layout_marginTop="11dp"
  android:ems="10"
  android:inputType="textPassword"
  />
        
  <button
  android:id="@+id/button" 
="" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignleft="@+id/imageView2" android:layout_alignstart="@+id/imageView2" android:layout_below="@+id/editText2" android:layout_margintop="27dp" android:text="Login">

David Crow

- Где я ошибся?"

Не проходя однократно через код с помощью отладчика и не имея никакой проверки ошибок или try/catch блоки.

Arunprasath Natarajan

"к сожалению, приложение остановилось."
Это означает, что ошибка должна быть не только в вашем коде процесса входа в систему.
Это может быть и другое - Так что используйте try catch block и проверьте его.

Arunprasath Natarajan

Поделитесь также кодом целевой страницы.

JoCodes

Можете ли вы поделиться какими-либо ошибками logcat?

nikhil arora

спасибо, друзья, я решил эту ошибку

0 Ответов