🎄teratailクリスマスプレゼントキャンペーン2024🎄』開催中!

\teratail特別グッズやAmazonギフトカード最大2,000円分が当たる!/

詳細はこちら
XML

XMLは仕様の1つで、マークアップ言語群を構築するために使われています。

Android Studio

Android Studioは、 Google社によって開発された、 Androidのネイティブアプリケーション開発に特化した統合開発ツールです。

Kotlin

Kotlinは、ジェットブレインズ社のアンドリー・ブレスラフ、ドミトリー・ジェメロフが開発した、 静的型付けのオブジェクト指向プログラミング言語です。

Q&A

解決済

1回答

2171閲覧

kotlinで、プッシュ通知と画面遷移が同時に発生するよう、実装したい。

退会済みユーザー

退会済みユーザー

総合スコア0

XML

XMLは仕様の1つで、マークアップ言語群を構築するために使われています。

Android Studio

Android Studioは、 Google社によって開発された、 Androidのネイティブアプリケーション開発に特化した統合開発ツールです。

Kotlin

Kotlinは、ジェットブレインズ社のアンドリー・ブレスラフ、ドミトリー・ジェメロフが開発した、 静的型付けのオブジェクト指向プログラミング言語です。

0グッド

0クリップ

投稿2020/12/07 13:20

前提・実現したいこと

ボタンを押すとともにプッシュ通知が送られ、画面遷移も同時に発生できるようにしたい。

発生している問題・エラーメッセージ

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がきっちり入っていることを何度も確かめました。なぜ画面遷移が起こらないのか、見当もつかず…。どうか、宜しくお願い致します。

気になる質問をクリップする

クリップした質問は、後からいつでもMYページで確認できます。

またクリップした質問に回答があった際、通知やメールを受け取ることができます。

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

guest

回答1

0

ベストアンサー

同じボタンを対象に、XMLでandroid:onClickを設定するのと、KotlinのコードでsetOnClickListenerによってリスナーをセットする操作を両方行っていますが、これでは後者の方が優先され前者で指定した関数は実行されません。android:onClickの行およびonButtonTapped()関数は除去し、

kotlin

1 pushBtn.setOnClickListener { 2 /// ボタンを押して通知を表示 3 with(NotificationManagerCompat.from(this)) { 4 notify(notificationId, builder.build()) 5 notificationId += 1 6 } 7 8 val intenttitle = Intent(this, cat::class.java) 9 startActivity(intenttitle) 10 }

のように改めたら想定した動作になりませんか?

投稿2020/12/07 15:16

編集2020/12/07 15:18
keicha_hrs

総合スコア6768

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

退会済みユーザー

退会済みユーザー

2020/12/07 15:52

すぐ出来ました~。またひとつ覚えることが出来ました。ありがとうございます。
guest

あなたの回答

tips

太字

斜体

打ち消し線

見出し

引用テキストの挿入

コードの挿入

リンクの挿入

リストの挿入

番号リストの挿入

表の挿入

水平線の挿入

プレビュー

15分調べてもわからないことは
teratailで質問しよう!

ただいまの回答率
85.36%

質問をまとめることで
思考を整理して素早く解決

テンプレート機能で
簡単に質問をまとめる

質問する

関連した質問