前提・実現したいこと
ボタンを押すとともにプッシュ通知が送られ、画面遷移も同時に発生できるようにしたい。
発生している問題・エラーメッセージ
error: なし。 発生している問題: ボタンを押すとともにプッシュ通知が送られ、画面遷移が発生するはずなのですが、画面遷移が始まることなく、通知だけ送られて終わってしまいます。
該当のソースコード
kotlinmainactyvity
1 2import android.app.NotificationChannel 3import android.app.NotificationManager 4import android.content.Context 5import android.content.Intent 6import android.os.Build 7import androidx.appcompat.app.AppCompatActivity 8import android.os.Bundle 9import android.view.View 10import android.widget.Button 11import androidx.core.app.NotificationCompat 12import androidx.core.app.NotificationManagerCompat 13import kotlinx.android.synthetic.main.activity_main.* 14 15class MainActivity : AppCompatActivity() { 16 override fun onCreate(savedInstanceState: Bundle?) { 17 super.onCreate(savedInstanceState) 18 setContentView(R.layout.activity_main) 19 20 val CHANNEL_ID = "channel_id" 21 val channel_name = "channel_name" 22 val channel_description = "channel_description " 23 24 ///APIレベルに応じてチャネルを作成 25 if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { 26 val name = channel_name 27 val descriptionText = channel_description 28 val importance = NotificationManager.IMPORTANCE_DEFAULT 29 val channel = NotificationChannel(CHANNEL_ID, name, importance).apply { 30 description = descriptionText 31 } 32 /// チャネルを登録 33 val notificationManager: NotificationManager = 34 getSystemService(Context.NOTIFICATION_SERVICE) as NotificationManager 35 notificationManager.createNotificationChannel(channel) 36 } 37 38 /// 通知の中身 39 val builder = NotificationCompat.Builder(this, CHANNEL_ID) 40 .setSmallIcon(R.drawable.ic_launcher_background) /// 表示されるアイコン 41 .setContentTitle("ハロー") /// 通知タイトル 42 .setContentText("今日も一日頑張りましょう。") /// 通知コンテンツ 43 .setPriority(NotificationCompat.PRIORITY_DEFAULT) /// 通知の優先度 44 45 46 var notificationId = 0 /// notificationID 47 pushBtn.setOnClickListener { 48 /// ボタンを押して通知を表示 49 with(NotificationManagerCompat.from(this)) { 50 notify(notificationId, builder.build()) 51 notificationId += 1 52 } 53 54 } 55 } 56 57 58 //実行ボタンから画面遷移 59 fun onButtonTapped(view: View?){ 60 61 val intenttitle = Intent(this, cat::class.java) 62 startActivity(intenttitle) 63 } 64 65} 66
kotlincat
1import androidx.appcompat.app.AppCompatActivity 2import android.os.Bundle 3import android.view.View 4 5class cat : AppCompatActivity() { 6 override fun onCreate(savedInstanceState: Bundle?) { 7 super.onCreate(savedInstanceState) 8 setContentView(R.layout.activity_cat) 9 } 10 fun onButtonTapped(view: View?){ 11 finish() 12 } 13} 14
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 <Button 10 android:id="@+id/pushBtn" 11 android:layout_width="wrap_content" 12 android:layout_height="wrap_content" 13 android:onClick="onButtonTapped" 14 android:text="始める" 15 app:layout_constraintBottom_toBottomOf="parent" 16 app:layout_constraintEnd_toEndOf="parent" 17 app:layout_constraintStart_toStartOf="parent" 18 app:layout_constraintTop_toTopOf="parent" /> 19 20 <ImageView 21 android:id="@+id/imageView" 22 android:layout_width="wrap_content" 23 android:layout_height="wrap_content" 24 android:layout_marginStart="26dp" 25 android:layout_marginTop="100dp" 26 android:layout_marginEnd="32dp" 27 app:layout_constraintEnd_toEndOf="parent" 28 app:layout_constraintStart_toStartOf="parent" 29 app:layout_constraintTop_toTopOf="parent" 30 app:srcCompat="@drawable/title" /> 31 32</androidx.constraintlayout.widget.ConstraintLayout>
試したこと
始めるbottonのonclicには、onButtonTappedがきっちり入っていることを何度も確かめました。なぜ画面遷移が起こらないのか、見当もつかず…。どうか、宜しくお願い致します。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2020/12/07 15:52