下記コードを追記すると、『Kotlin_1(※アプリ名)が繰り返し停止しています。』
と出てしまい、アプリが落ちてしまいます。
Kotlin
1val rollButton = findViewById<Button>(R.id.rollButton) 2 val resultTextView = findViewById<TextView>(R.id.resultsTextView) 3 val seekBar = findViewById<SeekBar>(R.id.seekBar3) 4 5 rollButton.setOnClickListener{ 6 val rand = Random().nextInt(seekBar.progress) 7 resultTextView.text = rand.toString() 8 }
解決策を教えて頂けると嬉しいです。
以下、全体のコードです。
Kt
1package com.example.kotlin_1 2 3import androidx.appcompat.app.AppCompatActivity 4import android.os.Bundle 5import android.widget.Button --------------ここから 6import android.widget.SeekBar 7import android.widget.TextView 8import java.util.* --------------ここまで 9 10class MainActivity : AppCompatActivity() { 11 override fun onCreate(savedInstanceState: Bundle?) { 12 super.onCreate(savedInstanceState) 13 setContentView(R.layout.activity_main) 14 15 val rollButton = findViewById<Button>(R.id.rollButton) --------------ここから 16 val resultTextView = findViewById<TextView>(R.id.resultsTextView) 17 val seekBar = findViewById<SeekBar>(R.id.seekBar3) 18 19 rollButton.setOnClickListener{ 20 val rand = Random().nextInt(seekBar.progress) 21 resultTextView.text = rand.toString() 22 } --------------ここまで 23 } 24} 25
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:id="@+id/rollButton" 6 android:layout_width="match_parent" 7 android:layout_height="match_parent" 8 tools:context=".MainActivity"> 9 10 11 <Button 12 android:id="@+id/button1" 13 android:layout_width="0dp" 14 android:layout_height="wrap_content" 15 android:layout_marginStart="24dp" 16 android:layout_marginLeft="24dp" 17 android:layout_marginEnd="24dp" 18 android:layout_marginRight="24dp" 19 android:text="Roll" 20 app:layout_constraintBottom_toBottomOf="parent" 21 app:layout_constraintEnd_toEndOf="parent" 22 app:layout_constraintHorizontal_bias="0.498" 23 app:layout_constraintStart_toStartOf="parent" 24 app:layout_constraintTop_toTopOf="parent" 25 app:layout_constraintVertical_bias="0.911" /> 26 27 <SeekBar 28 android:id="@+id/seekBar3" 29 style="@style/Widget.AppCompat.SeekBar.Discrete" 30 android:layout_width="0dp" 31 android:layout_height="wrap_content" 32 android:max="10" 33 android:progress="3" 34 app:layout_constraintBottom_toTopOf="@+id/button1" 35 app:layout_constraintEnd_toEndOf="parent" 36 app:layout_constraintHorizontal_bias="0.0" 37 app:layout_constraintStart_toStartOf="parent" 38 app:layout_constraintTop_toTopOf="parent" 39 app:layout_constraintVertical_bias="0.93" /> 40 41 <TextView 42 android:id="@+id/textView5" 43 android:layout_width="wrap_content" 44 android:layout_height="wrap_content" 45 android:layout_marginStart="24dp" 46 android:layout_marginLeft="24dp" 47 android:layout_marginBottom="24dp" 48 android:text="TextView" 49 app:layout_constraintBottom_toTopOf="@+id/seekBar3" 50 app:layout_constraintStart_toStartOf="parent" /> 51 52 <TextView 53 android:id="@+id/resultsTextView" 54 android:layout_width="wrap_content" 55 android:layout_height="wrap_content" 56 android:text="TextView" 57 android:textSize="144sp" 58 app:layout_constraintBottom_toTopOf="@+id/seekBar3" 59 app:layout_constraintEnd_toEndOf="parent" 60 app:layout_constraintStart_toStartOf="parent" 61 app:layout_constraintTop_toTopOf="parent" /> 62</androidx.constraintlayout.widget.ConstraintLayout>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。