gpt4 book ai didi

java - 使用 Intent 错误启动 Activity

转载 作者:太空宇宙 更新时间:2023-11-04 12:50:28 32 4
gpt4 key购买 nike

我是新人,所以如果我一开始的问题不好,请原谅:D这是我的代码,效果很好:

package com.github.chenxiaolong.dualbootpatcher;

import android.app.Activity;
import android.content.Intent;
import android.media.MediaPlayer;
import android.os.Bundle;
import android.view.View;
import android.view.Window;
import android.view.WindowManager;
import android.widget.Button;
import android.widget.EditText;


public class Patch extends Activity{

MediaPlayer mpbuttonclick;


@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FORCE_NOT_FULLSCREEN,WindowManager.LayoutParams.FLAG_FORCE_NOT_FULLSCREEN);

setContentView(R.layout.patcher);

mpbuttonclick = MediaPlayer.create(this, R.raw.keypress);

Button sumbitButton = (Button) findViewById(R.id.submitbutton);
sumbitButton.setOnClickListener(new View.OnClickListener() {
public void onClick(View v){
EditText passwordEditText = (EditText) findViewById(R.id.passwordedittext);
if(passwordEditText.getText().toString().equals("1234")){
startActivity(new Intent(".MainActivity"));
mpbuttonclick.start();


}}});
}}

这是我的 AndroidManifest :

<activity
android:name=".MainActivity"
android:label="@string/app_name_release"
android:theme="@style/DrawerActivityTheme">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

<activity
android:name=".Patch"
android:label="@string/app_name_release"
android:theme="@style/DrawerActivityTheme">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

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

它编译得很好,但是当我输入 1234 到文本时它会强制关闭应用程序,这里是 logcats logs你能更正我的代码并解释一下吗?我也想学:P提前谢谢

最佳答案

您可以使用多种方式启动任何 Activity 。对于您的情况,您可以通过编写以下内容来做到这一点:

startActivity(new Intent(Patch.this, MainActivity.class));

关于java - 使用 Intent 错误启动 Activity ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35880441/

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