前提・実現したいこと
MainからCategoryに画面を遷移させたい
発生している問題・エラーメッセージ
Main画面の「開始」ボタンをクリックするとアプリケーションが終了し下記のエラーメッセージが表示される
unfortunately, QuestionApplication has stopped.
該当のソースコード
activity_main.xml
xml
1<?xml version="1.0" encoding="utf-8"?> 2<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 xmlns:app="http://schemas.android.com/apk/res-auto" 4 xmlns:tools="http://schemas.android.com/tools" 5 android:layout_width="match_parent" 6 android:layout_height="match_parent" 7 tools:context=".MainActivity"> 8 9 <TextView 10 android:id="@+id/textPage" 11 android:layout_width="wrap_content" 12 android:layout_height="wrap_content" 13 android:text="Main" 14 android:textSize="30sp" 15 app:layout_constraintLeft_toLeftOf="parent" 16 app:layout_constraintTop_toTopOf="parent" /> 17 18 <Button 19 android:id="@+id/buttonStart" 20 android:layout_width="250sp" 21 android:layout_height="130sp" 22 android:text="開始" 23 android:textSize="50sp" 24 app:layout_constraintTop_toTopOf="parent" 25 app:layout_constraintBottom_toBottomOf="parent" 26 app:layout_constraintLeft_toLeftOf="parent" 27 app:layout_constraintRight_toRightOf="parent" /> 28 29</androidx.constraintlayout.widget.ConstraintLayout>
MainActivity.java
java
1package com.example.questionapplication; 2 3import androidx.appcompat.app.AppCompatActivity; 4 5import android.os.Bundle; 6import android.view.View; 7import android.widget.Button; 8import android.content.Intent; 9 10public class MainActivity extends AppCompatActivity { 11 12 Button btnS; 13 14 @Override 15 protected void onCreate(Bundle savedInstanceState) { 16 super.onCreate(savedInstanceState); 17 setContentView(R.layout.activity_main); 18 19 btnS = (Button)findViewById(R.id.buttonStart); //開始ボタン 20 21 btnS.setOnClickListener(new View.OnClickListener() { 22 public void onClick(View view){ 23 Intent intent = new Intent(); 24 intent.setClassName("com.example.questionapp","com.example.questionapp.CategoryActivity"); 25 startActivity(intent); 26 } 27 }); 28 } 29}
activity_category.xml
xml
1<?xml version="1.0" encoding="utf-8"?> 2<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 xmlns:app="http://schemas.android.com/apk/res-auto" 4 xmlns:tools="http://schemas.android.com/tools" 5 android:layout_width="match_parent" 6 android:layout_height="match_parent" 7 tools:context=".CategoryActivity"> 8 9 <TextView 10 android:id="@+id/textPage" 11 android:layout_width="wrap_content" 12 android:layout_height="wrap_content" 13 android:text="Category" 14 android:textSize="30sp" 15 app:layout_constraintLeft_toLeftOf="parent" 16 app:layout_constraintTop_toTopOf="parent" /> 17 18</androidx.constraintlayout.widget.ConstraintLayout>
CategoryActivity.java
java
1package com.example.questionapplication; 2 3import androidx.appcompat.app.AppCompatActivity; 4 5import android.os.Bundle; 6import android.widget.TextView; 7 8public class CategoryActivity extends AppCompatActivity { 9 10 TextView txtP; 11 12 @Override 13 protected void onCreate(Bundle savedInstanceState) { 14 super.onCreate(savedInstanceState); 15 setContentView(R.layout.activity_category); 16 17 txtP = (TextView)findViewById(R.id.textPage); 18 } 19}
AndroidManifest.xml
xml
1<?xml version="1.0" encoding="utf-8"?> 2<manifest xmlns:android="http://schemas.android.com/apk/res/android" 3 package="com.example.questionapplication"> 4 5 <application 6 android:allowBackup="true" 7 android:icon="@mipmap/ic_launcher" 8 android:label="@string/app_name" 9 android:roundIcon="@mipmap/ic_launcher_round" 10 android:supportsRtl="true" 11 android:theme="@style/Theme.QuestionApplication"> 12 <activity android:name=".CategoryActivity"></activity> 13 <activity android:name=".MainActivity"> 14 <intent-filter> 15 <action android:name="android.intent.action.MAIN" /> 16 17 <category android:name="android.intent.category.LAUNCHER" /> 18 </intent-filter> 19 </activity> 20 </application> 21 22</manifest>
試したこと
AndroidManifest.xmlの再入力、確認
AVDマネージャーのデータ消去
補足情報(FW/ツールのバージョンなど)
Android Studio 4.1
AVD:Nexus7 (2012) API23
SDK:Android 6.0 (Marshmallow) APIレベル23
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/11/03 14:56