- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我会保持这个甜蜜和切题。我刚刚开始学习在 Android Studio 中开发应用程序,我想出了以下代码:
package com.example.peter.helloworld;
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 java.util.HashMap;
import java.util.Map;
public class MainActivity extends AppCompatActivity implements
View.OnClickListener {
HashMap<String,String> cred = new HashMap<String,String>();
EditText u, p;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Button button = findViewById(R.id.button);
button.setOnClickListener(this);
cred.put("username", "password");
}
public void onClick(View v){
this.u = findViewById(R.id.username);
this.p = findViewById(R.id.password);
login(this.u.getText().toString(), this.p.getText().toString());
}
public void login(String username, String password){
if (cred.keySet().contains(username)){
if (cred.get((String) username).equals(password)){
Intent change = new Intent(this, picscreen.class);
startActivity(change);
}
}else{
return;
}
}
}
(xml布局文件内)
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
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.peter.helloworld.MainActivity">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/holo_red_dark"
android:backgroundTint="@android:color/holo_red_dark"
android:layoutMode="opticalBounds"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent">
<EditText
android:id="@+id/password"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:ems="10"
android:inputType="textPassword"
tools:layout_editor_absoluteX="85dp"
tools:layout_editor_absoluteY="233dp" />
<EditText
android:id="@+id/username"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/password"
android:layout_alignParentTop="true"
android:layout_alignStart="@+id/password"
android:layout_marginTop="130dp"
android:ems="10"
android:inputType="textPersonName"
tools:layout_toLeftOf="password" />
<TextView
android:id="@+id/textView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/username"
android:layout_centerHorizontal="true"
android:text="Username"
tools:layout_editor_absoluteX="161dp"
tools:layout_editor_absoluteY="199dp" />
<TextView
android:id="@+id/textView5"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignStart="@id/textView3"
android:layout_below="@id/password"
android:layout_alignLeft="@id/textView3"
android:text="Password" />
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/textView5"
android:layout_centerHorizontal="true"
android:layout_marginTop="57dp"
android:text="Login" />
</RelativeLayout>
目标是创建一个登录屏幕。
登录成功后应用程序崩溃。我想知道为什么。如果您需要更多信息,请告诉我。
编辑:LOGCAT(抱歉,我是新来的,不知道诊断需要错误日志,干杯!
11-25 11:24:51.033 3431-3431/com.example.peter.helloworld I/zygote: Not late-enabling -Xcheck:jni (already on)
11-25 11:24:51.404 3431-3431/com.example.peter.helloworld W/zygote: Unexpected CPU variant for X86 using defaults: x86
11-25 11:24:51.785 3431-3431/com.example.peter.helloworld W/ActivityThread: Application com.example.peter.helloworld is waiting for the debugger on port 8100...
11-25 11:24:51.804 3431-3431/com.example.peter.helloworld I/System.out: Sending WAIT chunk
11-25 11:24:52.750 3431-3446/com.example.peter.helloworld I/zygote: Debugger is active
11-25 11:24:52.822 3431-3431/com.example.peter.helloworld I/System.out: Debugger has connected
11-25 11:24:52.822 3431-3431/com.example.peter.helloworld I/System.out: waiting for debugger to settle...
11-25 11:24:53.025 3431-3431/com.example.peter.helloworld I/System.out: waiting for debugger to settle...
11-25 11:24:53.227 3431-3431/com.example.peter.helloworld I/System.out: waiting for debugger to settle...
11-25 11:24:53.428 3431-3431/com.example.peter.helloworld I/System.out: waiting for debugger to settle...
11-25 11:24:53.630 3431-3431/com.example.peter.helloworld I/System.out: waiting for debugger to settle...
11-25 11:24:53.838 3431-3431/com.example.peter.helloworld I/System.out: waiting for debugger to settle...
11-25 11:24:54.040 3431-3431/com.example.peter.helloworld I/System.out: waiting for debugger to settle...
11-25 11:24:54.242 3431-3431/com.example.peter.helloworld I/System.out: waiting for debugger to settle...
11-25 11:24:54.449 3431-3431/com.example.peter.helloworld I/System.out: waiting for debugger to settle...
11-25 11:24:54.650 3431-3431/com.example.peter.helloworld I/System.out: waiting for debugger to settle...
11-25 11:24:54.851 3431-3431/com.example.peter.helloworld I/System.out: waiting for debugger to settle...
11-25 11:24:55.053 3431-3431/com.example.peter.helloworld I/System.out: waiting for debugger to settle...
11-25 11:24:55.255 3431-3431/com.example.peter.helloworld I/System.out: waiting for debugger to settle...
11-25 11:24:55.456 3431-3431/com.example.peter.helloworld I/System.out: debugger has settled (1458)
11-25 11:24:55.673 3431-3431/com.example.peter.helloworld I/InstantRun: starting instant run server: is main process
11-25 11:24:56.416 3431-3524/com.example.peter.helloworld D/OpenGLRenderer: HWUI GL Pipeline
11-25 11:24:56.591 3431-3524/com.example.peter.helloworld I/zygote: android::hardware::configstore::V1_0::ISurfaceFlingerConfigs::hasWideColorDisplay retrieved: 0
11-25 11:24:56.591 3431-3524/com.example.peter.helloworld I/OpenGLRenderer: Initialized EGL, version 1.4
11-25 11:24:56.591 3431-3524/com.example.peter.helloworld D/OpenGLRenderer: Swap behavior 1
11-25 11:24:56.599 3431-3524/com.example.peter.helloworld D/EGL_emulation: eglCreateContext: 0xa7341600: maj 2 min 0 rcv 2
11-25 11:24:56.618 3431-3524/com.example.peter.helloworld D/EGL_emulation: eglMakeCurrent: 0xa7341600: ver 2 0 (tinfo 0xa9ca1f70)
11-25 11:24:56.813 3431-3524/com.example.peter.helloworld D/EGL_emulation: eglMakeCurrent: 0xa7341600: ver 2 0 (tinfo 0xa9ca1f70)
11-25 11:24:57.373 3431-3431/com.example.peter.helloworld V/View: dispatchProvideAutofillStructure(): not laid out, ignoring 0 children of 1073741833
11-25 11:24:57.392 3431-3431/com.example.peter.helloworld I/AssistStructure: Flattened final assist data: 2912 bytes, containing 1 windows, 11 views
11-25 11:25:00.021 3431-3444/com.example.peter.helloworld I/zygote: Do partial code cache collection, code=28KB, data=30KB
11-25 11:25:00.022 3431-3444/com.example.peter.helloworld I/zygote: After code cache collection, code=28KB, data=30KB
11-25 11:25:00.022 3431-3444/com.example.peter.helloworld I/zygote: Increasing code cache capacity to 128KB
11-25 11:25:00.650 3431-3444/com.example.peter.helloworld I/zygote: Do partial code cache collection, code=58KB, data=58KB
11-25 11:25:00.650 3431-3444/com.example.peter.helloworld I/zygote: After code cache collection, code=58KB, data=58KB
11-25 11:25:00.650 3431-3444/com.example.peter.helloworld I/zygote: Increasing code cache capacity to 256KB
11-25 11:25:02.967 3431-3444/com.example.peter.helloworld I/zygote: Do full code cache collection, code=123KB, data=99KB
11-25 11:25:03.029 3431-3444/com.example.peter.helloworld I/zygote: After code cache collection, code=116KB, data=71KB
11-25 11:25:03.505 3431-3431/com.example.peter.helloworld E/SpannableStringBuilder: SPAN_EXCLUSIVE_EXCLUSIVE spans cannot have a zero length
11-25 11:25:03.505 3431-3431/com.example.peter.helloworld E/SpannableStringBuilder: SPAN_EXCLUSIVE_EXCLUSIVE spans cannot have a zero length
11-25 11:25:05.305 3431-3444/com.example.peter.helloworld I/zygote: Do partial code cache collection, code=123KB, data=98KB
11-25 11:25:05.307 3431-3444/com.example.peter.helloworld I/zygote: After code cache collection, code=123KB, data=98KB
11-25 11:25:05.307 3431-3444/com.example.peter.helloworld I/zygote: Increasing code cache capacity to 512KB
11-25 11:25:12.140 3431-3444/com.example.peter.helloworld I/zygote: Do full code cache collection, code=248KB, data=169KB
11-25 11:25:12.140 3431-3444/com.example.peter.helloworld I/zygote: After code cache collection, code=245KB, data=145KB
11-25 11:25:20.114 3431-3431/com.example.peter.helloworld D/AndroidRuntime: Shutting down VM
11-25 11:25:20.131 3431-3431/com.example.peter.helloworld E/AndroidRuntime: FATAL EXCEPTION: main
Process: com.example.peter.helloworld, PID: 3431
android.content.ActivityNotFoundException: Unable to find explicit activity class {com.example.peter.helloworld/com.example.peter.helloworld.picscreen}; have you declared this activity in your AndroidManifest.xml?
at android.app.Instrumentation.checkStartActivityResult(Instrumentation.java:1933)
at android.app.Instrumentation.execStartActivity(Instrumentation.java:1616)
at android.app.Activity.startActivityForResult(Activity.java:4488)
at android.support.v4.app.BaseFragmentActivityApi16.startActivityForResult(BaseFragmentActivityApi16.java:54)
at android.support.v4.app.FragmentActivity.startActivityForResult(FragmentActivity.java:67)
at android.app.Activity.startActivityForResult(Activity.java:4446)
at android.support.v4.app.FragmentActivity.startActivityForResult(FragmentActivity.java:720)
at android.app.Activity.startActivity(Activity.java:4807)
at android.app.Activity.startActivity(Activity.java:4775)
at com.example.peter.helloworld.MainActivity.login(MainActivity.java:39)
at com.example.peter.helloworld.MainActivity.onClick(MainActivity.java:32)
at android.view.View.performClick(View.java:6294)
at android.view.View$PerformClick.run(View.java:24770)
at android.os.Handler.handleCallback(Handler.java:790)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:164)
at android.app.ActivityThread.main(ActivityThread.java:6494)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:438)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:807)
最佳答案
检查 AndroidManifest.xml 中的 picscreen.java
如果不存在,则如下所示:
<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=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".picscreen" />
</application>
尝试一下,让我知道这是否适合您。
关于java - 屏幕更改后应用程序崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47482516/
我有一段代码看起来像这样: void update_clock(uint8_t *time_array) { time_t time = *((time_t *) &time_array[0]
应用程序崩溃了 :( 请帮助我.. 在这方面失败了。我找不到错误?该应用程序可以连接到 iTunesConnect 但它会出错。 谁能根据下面的崩溃报告判断问题出在哪里? share_with_app
小二是新来的实习生,作为技术 leader,我给他安排了一个非常简单的练手任务,把前端 markdown 编辑器里上传的图片保存到服务器端,结果他真的就把图片直接保存到了服务器上,这下可把我气坏了,就
我正在创建一个函数,它将目录路径作为参数传递,或者如果它留空,则提示用户输入。 我已经设置了我的 PATH_MAX=100 和 if 语句来检查 if ((strlen(folder path) +
我已将“arial.ttf”文件(从我的/Windows/Fonts 文件夹中获取)加载到内存中,但是将其传递到 FT_New_Memory_Face 时会崩溃(在 FT_Open_Face 中的某处
我正在尝试在我的计算机上的两个控制台之间进行 rtsp 流。 在控制台 1 上,我有: ffmpeg -rtbufsize 100M -re -f dshow -s 320x240 -i video=
我正在尝试使用 scio_beast在一个项目中。我知道它还没有完成,但这并不重要。我已经设法让它工作得很好。 我现在正在尝试连接到 CloudFlare 后面的服务器,我知道我需要 SNI 才能工作
我有一个带有关联宏的下拉列表,如下所示: Sub Drop() If Range("Hidden1!A1") = "1" Then Sheets("Sheet1").Se
我对 bash 很陌生。我要做的就是运行这个nvvp -vm /usr/lib64/jvm/jre-1.8.0/bin/java无需记住最后的路径。我认为 instafix 就是这样做...... n
我在 Windows 上使用 XAMPP 已经两年左右了,它运行完美,没有崩溃没有问题。 (直到四个月前。) 大约四个月前,我们将服务器/系统升级到了更快的规范。 这是旧规范的内容 - Windows
我面临着一个非常烦人的 android 崩溃,它发生在大约 1% 的 PRODUCTION session 中,应用程序始终在后台运行。 Fatal Exception: android.app.Re
尝试使用下面的函数: public void createObjectType() { try { mCloudDB.createObjectType(ObjectTypeIn
由于我正在进行的一个项目,我在 CF11 管理员中弄乱了类路径,我设法使服务器崩溃,以至于我唯一得到的是一个漂亮的蓝屏和 500 错误.我已经检查了日志,我会把我能做的贴在帖子的底部,但我希望有人会启
关闭。这个问题不满足Stack Overflow guidelines .它目前不接受答案。 想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。 10 个月前关闭。 Improve
我最近从 xcode 3.x 更新到 4.2,当我在 4.2 中运行应用程序时,我遇到了核心数据问题。我还更新到了 iOS 5,所以问题可能就在那里,我不太确定。 这些应用程序在 3.x 中运行良好,
我是一个相对较新的 iPhone 应用程序开发人员,所以我的知识有点粗略,所以如果这是一个微不足道的问题,请原谅我。 我有一个导航应用程序,它通过在navigationController对象上调用p
if ([MFMailComposeViewController canSendMail]) { MFMailComposeViewController *mailViewController
你能帮我吗? 我正在设置 UILocalNotification,当我尝试设置其 userInfo 字典时,它崩溃了。 fetchedObjects 包含 88 个对象。 这是代码: NSDi
为什么我的代码中突然出现 NSFastEnumeration Mutation Handler 崩溃。我很茫然为什么会突然出现这个崩溃以及如何解决它。 最佳答案 崩溃错误: **** 由于未捕获的异常
当我从表中删除行时,我的应用程序崩溃了。这是我检测到错误和堆栈跟踪的来源。谢谢! //delete row from database - (void)tableView:(UITableView *
我是一名优秀的程序员,十分优秀!