使用2种意图时,为什么我的Android应用程序会继续关闭?当我删除其中之一时,就可以了。特别是如果我删除Java文件中的“ Reg”按钮。 谢谢
XML文件:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView 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=".LoginAct">
<TextView
android:id="@+id/daftar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:text="@string/daftar"
android:textAlignment="center"
android:textColor="@color/Linktext"
android:clickable="true"
android:focusable="true"
android:layout_marginTop="10dp">
</TextView>
<Button
android:id="@+id/pass"
android:layout_width="wrap_content"
android:layout_height="23dp"
android:layout_gravity="center_horizontal"
android:layout_marginTop="25dp"
android:background="@color/colorPrimaryDark"
android:clickable="true"
android:focusable="true"
android:text="@string/lewat"
android:textColor="@color/textwhite" />
Java文件(如果我从该文件中删除了“ Reg”按钮,则该应用程序正在运行,否则会在启动屏幕后强制关闭):
package com.soerja.ngalamhistory;
import android.content.Intent;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.Button;
public class LoginAct extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.act_login);
Button Pass = (Button) findViewById(R.id.pass);
Button Reg = (Button) findViewById(R.id.daftar);
Pass.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Intent intent = new Intent(LoginAct.this, MainActivity.class);
startActivity(intent);
}
});
Reg.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Intent intent = new Intent(LoginAct.this, RegisAct.class);
startActivity(intent);
}
});
}
}
AndroidManifest文件:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.soerja.ngalamhistory">
<application
android:allowBackup="true"
android:icon="@mipmap/logo"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".SplashAct"
android:theme="@style/SplashTheme">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".LoginAct"
android:label="@string/applogin"
android:theme="@style/LogTheme"></activity>
<activity
android:name=".MainActivity"
android:label="@string/home"
android:theme="@style/AppTheme"></activity>
<activity android:name=".RegisAct"
android:label="@string/appdaftar"
android:theme="@style/LogTheme"></activity>
</application>
</manifest>
非常感谢您的帮助,因为这是我的学校项目:)
答案 0 :(得分:1)
您正在将TextView投射到Button中。可能是无效的强制转换异常。
在XML中,您将“ daftar”定义为TextView,但是在Java中,您尝试将其用作Button。
更改
TextView Reg = (TextView) findViewById(R.id.daftar);
对此
builder( stringList.toArray( new String[stringList.size()] ) );//with pre-difined array size
或者更改您的XML实现,将“ daftar”定义为一个按钮
答案 1 :(得分:0)
您在这里使用文本视图ID
ul
作为声明按钮的参考
<li class='li'></li>
所以我认为,这可能是崩溃的原因
尝试此方法:
将此添加到您的文本xml代码中:
android:id="@+id/daftar"
为java类添加此功能:
Button Reg = (Button) findViewById(R.id.daftar);
并删除用于此文本视图的旧Java代码:
我希望这会有所帮助。