当切换到android中的另一个活动时,应用停止

时间:2017-04-05 20:40:42

标签: java android xml

当我点击按钮"开始派对"我希望我的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" />

这是&#34; home.java&#34; :

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);
    }
}

这是&#34; BeforeParty.java&#34;

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);
    }
}

最后,&#34; activity_before_party.xml&#34;的一部分(我要切换到的页面):

<?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">

4 个答案:

答案 0 :(得分:1)

请发布错误,否则很难找到问题。 您可能尚未在BeforeParty注册AndroidManifest个活动。

应该是这样的:

<?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>

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

答案 1 :(得分:0)

试试这个,更改此方法的theClick

startParty.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent i = new Intent(this,BeforeParty.class);
startActivity(i);                    
});

答案 2 :(得分:0)

替换这个:

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

用这个:

startParty.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            Intent i = new Intent(getApplicationContext(), BeforeParty.class);
if (i.resolveActivity(getPackageManager()) != null) {
                    startActivity(i);
                }            }
        });

答案 3 :(得分:0)

试试这个我希望这适合你

 startParty.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            startActivity(new Intent(Home.this, BeforeParty.class));
        }
    });