gpt4 book ai didi

java - 应用程序在运行构建时不断崩溃

转载 作者:行者123 更新时间:2023-12-03 17:09:48 25 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





Error: The processing instruction target matching "[xX][mM][lL]" is not allowed

(15 个回答)


4年前关闭。




对于将这个线程标记为重复的好心版主:我访问了“原始”线程,它没有任何东西(我可以看到)可以帮助我。请重新打开此线程。

当我运行这个构建时,我的应用程序不断崩溃(这是一个基本的登录和注册表单)。问题肯定在 LoginActivity.java 代码中,但我不知道问题是什么。

这是 RegistrationActivity.java 代码

package com.example.sean.cookappreal;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.*;

public class RegisterActivity extends AppCompatActivity {

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

final EditText etUsername = (EditText)
findViewById(R.id.etUsername);
final EditText etEmailAddress = (EditText)
findViewById(R.id.etEmailAddress);
final EditText etPassword = (EditText)
findViewById(R.id.etPassword);

final Button bRegister = (Button) findViewById(R.id.bRegister);
}
}

这是 LoginActvitity.java 代码:
package com.example.sean.cookappreal;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.*;
import android.content.Intent;

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 registerLink = (TextView)
findViewById(R.id.tvRegisterHere);

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

最后是 UserAreaActivity.java 代码(这只是一个非常简单的主页欢迎屏幕)。
package com.example.sean.cookappreal;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.*;




public class UserAreaActivity extends AppCompatActivity {

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

final EditText etUsername = (EditText)
findViewById(R.id.etUsername);
final TextView welcomeMessage = (TextView)
findViewById(R.id.tvWelcomeMsg);

}
}

这是我要求的 list 代码。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.sean.cookappreal">

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".LoginActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category
android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".RegisterActivity" />
<activity android:name=".UserAreaActivity"></activity>
</application>

</manifest>

这是日志猫信息。
07-26 17:27:17.491 13115-13115/com.example.sean.cookappreal E/Zygote: v2
07-26 17:27:17.491 13115-13115/com.example.sean.cookappreal W/SELinux: Function: selinux_compare_spd_ram, index[1], priority [2], priority version is VE=SEPF_SECMOBILE_6.0.1_0033
07-26 17:27:17.491 13115-13115/com.example.sean.cookappreal I/libpersona: KNOX_SDCARD checking this for 10238
07-26 17:27:17.491 13115-13115/com.example.sean.cookappreal I/libpersona: KNOX_SDCARD not a persona
07-26 17:27:17.501 13115-13115/com.example.sean.cookappreal E/Zygote: accessInfo : 0
07-26 17:27:17.501 13115-13115/com.example.sean.cookappreal W/SELinux: SELinux: seapp_context_lookup: seinfo=default, level=s0:c512,c768, pkgname=com.example.sean.cookappreal
07-26 17:27:17.501 13115-13115/com.example.sean.cookappreal I/art: Late-enabling -Xcheck:jni
07-26 17:27:17.541 13115-13115/com.example.sean.cookappreal D/TimaKeyStoreProvider: TimaSignature is unavailable
07-26 17:27:17.541 13115-13115/com.example.sean.cookappreal D/ActivityThread: Added TimaKeyStore provider
07-26 17:27:17.581 13115-13115/com.example.sean.cookappreal D/ResourcesManager: For user 0 new overlays fetched Null
07-26 17:27:17.721 13115-13115/com.example.sean.cookappreal W/art: Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --debuggable --instruction-set=arm --instruction-set-features=smp,div,atomic_ldrd_strd --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --compiler-filter=speed --instruction-set-variant=cortex-a15 --instruction-set-features=default --dex-file=/data/app/com.example.sean.cookappreal-1/split_lib_dependencies_apk.apk --oat-file=/data/dalvik-cache/arm/data@app@com.example.sean.cookappreal-1@split_lib_dependencies_apk.apk@classes.dex) because non-0 exit status
07-26 17:27:17.951 13115-13115/com.example.sean.cookappreal W/art: Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --debuggable --instruction-set=arm --instruction-set-features=smp,div,atomic_ldrd_strd --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --compiler-filter=speed --instruction-set-variant=cortex-a15 --instruction-set-features=default --dex-file=/data/app/com.example.sean.cookappreal-1/split_lib_slice_0_apk.apk --oat-file=/data/dalvik-cache/arm/data@app@com.example.sean.cookappreal-1@split_lib_slice_0_apk.apk@classes.dex) because non-0 exit status
07-26 17:27:18.021 13115-13115/com.example.sean.cookappreal W/art: Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --debuggable --instruction-set=arm --instruction-set-features=smp,div,atomic_ldrd_strd --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --compiler-filter=speed --instruction-set-variant=cortex-a15 --instruction-set-features=default --dex-file=/data/app/com.example.sean.cookappreal-1/split_lib_slice_1_apk.apk --oat-file=/data/dalvik-cache/arm/data@app@com.example.sean.cookappreal-1@split_lib_slice_1_apk.apk@classes.dex) because non-0 exit status
07-26 17:27:18.081 13115-13115/com.example.sean.cookappreal W/art: Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --debuggable --instruction-set=arm --instruction-set-features=smp,div,atomic_ldrd_strd --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --compiler-filter=speed --instruction-set-variant=cortex-a15 --instruction-set-features=default --dex-file=/data/app/com.example.sean.cookappreal-1/split_lib_slice_2_apk.apk --oat-file=/data/dalvik-cache/arm/data@app@com.example.sean.cookappreal-1@split_lib_slice_2_apk.apk@classes.dex) because non-0 exit status
07-26 17:27:18.151 13115-13115/com.example.sean.cookappreal W/art: Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --debuggable --instruction-set=arm --instruction-set-features=smp,div,atomic_ldrd_strd --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --compiler-filter=speed --instruction-set-variant=cortex-a15 --instruction-set-features=default --dex-file=/data/app/com.example.sean.cookappreal-1/split_lib_slice_3_apk.apk --oat-file=/data/dalvik-cache/arm/data@app@com.example.sean.cookappreal-1@split_lib_slice_3_apk.apk@classes.dex) because non-0 exit status
07-26 17:27:18.211 13115-13115/com.example.sean.cookappreal W/art: Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --debuggable --instruction-set=arm --instruction-set-features=smp,div,atomic_ldrd_strd --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --compiler-filter=speed --instruction-set-variant=cortex-a15 --instruction-set-features=default --dex-file=/data/app/com.example.sean.cookappreal-1/split_lib_slice_4_apk.apk --oat-file=/data/dalvik-cache/arm/data@app@com.example.sean.cookappreal-1@split_lib_slice_4_apk.apk@classes.dex) because non-0 exit status
07-26 17:27:18.271 13115-13115/com.example.sean.cookappreal W/art: Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --debuggable --instruction-set=arm --instruction-set-features=smp,div,atomic_ldrd_strd --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --compiler-filter=speed --instruction-set-variant=cortex-a15 --instruction-set-features=default --dex-file=/data/app/com.example.sean.cookappreal-1/split_lib_slice_5_apk.apk --oat-file=/data/dalvik-cache/arm/data@app@com.example.sean.cookappreal-1@split_lib_slice_5_apk.apk@classes.dex) because non-0 exit status
07-26 17:27:18.331 13115-13115/com.example.sean.cookappreal W/art: Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --debuggable --instruction-set=arm --instruction-set-features=smp,div,atomic_ldrd_strd --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --compiler-filter=speed --instruction-set-variant=cortex-a15 --instruction-set-features=default --dex-file=/data/app/com.example.sean.cookappreal-1/split_lib_slice_6_apk.apk --oat-file=/data/dalvik-cache/arm/data@app@com.example.sean.cookappreal-1@split_lib_slice_6_apk.apk@classes.dex) because non-0 exit status
07-26 17:27:18.401 13115-13115/com.example.sean.cookappreal W/art: Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --debuggable --instruction-set=arm --instruction-set-features=smp,div,atomic_ldrd_strd --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --compiler-filter=speed --instruction-set-variant=cortex-a15 --instruction-set-features=default --dex-file=/data/app/com.example.sean.cookappreal-1/split_lib_slice_7_apk.apk --oat-file=/data/dalvik-cache/arm/data@app@com.example.sean.cookappreal-1@split_lib_slice_7_apk.apk@classes.dex) because non-0 exit status
07-26 17:27:18.471 13115-13115/com.example.sean.cookappreal W/art: Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --debuggable --instruction-set=arm --instruction-set-features=smp,div,atomic_ldrd_strd --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --compiler-filter=speed --instruction-set-variant=cortex-a15 --instruction-set-features=default --dex-file=/data/app/com.example.sean.cookappreal-1/split_lib_slice_8_apk.apk --oat-file=/data/dalvik-cache/arm/data@app@com.example.sean.cookappreal-1@split_lib_slice_8_apk.apk@classes.dex) because non-0 exit status
07-26 17:27:18.531 13115-13115/com.example.sean.cookappreal W/art: Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --debuggable --instruction-set=arm --instruction-set-features=smp,div,atomic_ldrd_strd --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --compiler-filter=speed --instruction-set-variant=cortex-a15 --instruction-set-features=default --dex-file=/data/app/com.example.sean.cookappreal-1/split_lib_slice_9_apk.apk --oat-file=/data/dalvik-cache/arm/data@app@com.example.sean.cookappreal-1@split_lib_slice_9_apk.apk@classes.dex) because non-0 exit status
07-26 17:27:18.531 13115-13115/com.example.sean.cookappreal W/System: ClassLoader referenced unknown path: /data/app/com.example.sean.cookappreal-1/lib/arm
07-26 17:27:18.541 13115-13115/com.example.sean.cookappreal I/InstantRun: starting instant run server: is main process
07-26 17:27:18.671 13115-13115/com.example.sean.cookappreal W/art: Before Android 4.1, method android.graphics.PorterDuffColorFilter android.support.graphics.drawable.VectorDrawableCompat.updateTintFilter(android.graphics.PorterDuffColorFilter, android.content.res.ColorStateList, android.graphics.PorterDuff$Mode) would have incorrectly overridden the package-private method in android.graphics.drawable.Drawable
07-26 17:27:18.891 13115-13115/com.example.sean.cookappreal D/AndroidRuntime: Shutting down VM
07-26 17:27:18.891 13115-13115/com.example.sean.cookappreal E/AndroidRuntime: FATAL EXCEPTION: main
Process: com.example.sean.cookappreal, PID: 13115
java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.sean.cookappreal/com.example.sean.cookappreal.LoginActivity}: java.lang.ClassCastException: android.widget.RelativeLayout cannot be cast to android.widget.TextView
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:3255)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:3351)
at android.app.ActivityThread.access$1100(ActivityThread.java:222)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1796)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:158)
at android.app.ActivityThread.main(ActivityThread.java:7230)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1230)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1120)
Caused by: java.lang.ClassCastException: android.widget.RelativeLayout cannot be cast to android.widget.TextView
at com.example.sean.cookappreal.LoginActivity.onCreate(LoginActivity.java:19)
at android.app.Activity.performCreate(Activity.java:6877)
at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1136)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:3208)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:3351) 
at android.app.ActivityThread.access$1100(ActivityThread.java:222) 
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1796) 
at android.os.Handler.dispatchMessage(Handler.java:102) 
at android.os.Looper.loop(Looper.java:158) 
at android.app.ActivityThread.main(ActivityThread.java:7230) 
at java.lang.reflect.Method.invoke(Native Method) 
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1230) 
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1120) 
07-26 17:32:19.201 13115-13115/com.example.sean.cookappreal I/Process: Sending signal. PID: 13115 SIG: 9

这是我的 Activity 注册布局

enter image description here

这是我的 Activity 登录布局

enter image description here

最佳答案

正如我所看到的,您将 ID 用于 etUsername 和 etPassword 两次。您可以在每个完整的应用程序中使用一次。此外,无法通过 id 找到元素,这不在布局中。

塔里克

关于java - 应用程序在运行构建时不断崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45325778/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com