gpt4 book ai didi

java - 当切换到 Android 中的另一个 Activity 时应用程序停止

转载 作者:行者123 更新时间:2023-12-02 13:29:47 25 4
gpt4 key购买 nike

当我单击“开始派对”按钮时,我希望我的 Android 应用程序切换到“activity_before_party.xml”,但是当我单击该按钮时,应用程序停止。我尝试了很多事情,但没有任何效果……在我看来,这似乎是一个小问题。感谢您的帮助

这是“activity_home.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"
android:background="#226B6E"
tools:context="com.example.emili.partymate.Home"
tools:layout_editor_absoluteY="81dp"
tools:layout_editor_absoluteX="0dp">


<Button
android:id="@+id/idstartParty"
android:layout_width="260dp"
android:layout_height="61dp"
android:backgroundTint="@color/Start_Party_color"
android:text="Start Party!"
android:textColor="#ffffff"
android:textSize="22sp"
android:onClick="theClick"
app:layout_constraintBottom_toTopOf="@+id/viewLogs"
app:layout_constraintHorizontal_bias="0.496"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.285" />

这是“home.java”:

package com.example.emili.partymate;

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

public class Home extends AppCompatActivity {
Button startParty;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_home);
startParty = (Button) findViewById(R.id.idstartParty);
}

public void theClick(View v){
Intent i = new Intent(this,BeforeParty.class);
startActivity(i);
}
}

这是“BeforeParty.java”

package com.example.emili.partymate;

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

public class BeforeParty extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_before_party);
}
}

最后,“activity_before_party.xml”的一部分(我要切换到的页面):

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_before_party"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#226B6E"
tools:context=".BeforeParty">

最佳答案

请把错误也贴出来,不然很难发现问题。可能您尚未在 AndroidManifest 中注册您的 BeforeParty Activity 。

应该是这样的:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.your.packename">

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

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

<activity android:name=".BeforeParty" />

</manifest>

但是,这只是一个猜测。请提供更多详细信息,我们可以提供帮助。

关于java - 当切换到 Android 中的另一个 Activity 时应用程序停止,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43241232/

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