kotlinでボタンを押すたびに、整数を順番に表示したい。
設置しておいたtextviewに、buttonをおすたびに、整数を1→2→3…と一つずつ順番に表示できるようにしたいです。今はランダムにしか表示する方法がわからず、どうか宜しくお願い致します。
下記のコードで、ここまでは考えましたが、わかりませんでした。
発生している問題・エラーメッセージ
エラーメッセージ なし。
該当のソースコード
kotlin
1import android.animation.AnimatorSet 2import android.animation.ObjectAnimator 3import android.annotation.SuppressLint 4import android.graphics.Path 5import android.os.Build 6import androidx.appcompat.app.AppCompatActivity 7import android.os.Bundle 8import android.view.View 9import android.view.animation.Animation 10import kotlinx.android.synthetic.main.main.* 11 12 13 14class fallActivity : AppCompatActivity() { 15 val list = (1..6).toList() 16 override fun onCreate(savedInstanceState: Bundle?) { 17 super.onCreate(savedInstanceState) 18 setContentView(R.layout.main) 19 20 button.setOnClickListener{ 21 22 when(list.random()){ 23 1->text1.text = "1" 24 2->text1.text = "2" 25 3->text1.text = "3" 26 4->text1.text = "4" 27 5->text1.text = "5" 28 6->text1.text = "6" 29 } 30 } 31 } 32} 33
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=".fallActivity"> 8 9 <Button 10 android:id="@+id/button" 11 android:layout_width="wrap_content" 12 android:layout_height="wrap_content" 13 android:layout_marginTop="317dp" 14 android:text="Button" 15 app:layout_constraintEnd_toEndOf="parent" 16 app:layout_constraintStart_toStartOf="parent" 17 app:layout_constraintTop_toTopOf="parent" /> 18 19 <TextView 20 android:id="@+id/text1" 21 android:layout_width="60dp" 22 android:layout_height="wrap_content" 23 android:layout_marginTop="98dp" 24 android:layout_marginEnd="17dp" 25 app:layout_constraintEnd_toEndOf="@+id/button" 26 app:layout_constraintTop_toBottomOf="@+id/button" /> 27</androidx.constraintlayout.widget.ConstraintLayout>
試したこと
直感で上記のようにコードを書いてみたんですが、ランダム以外で、数字を表示させる方法が思い浮かばず、とりあえずここまでは考えた、というのを記述しました。
どうすれば1から6まで順番に表示させることが出来るのか、ご指導お願いいたします。
とりあえず今表示している番号を憶えておく変数が必要でしょうね。
変数が必要というのは、こういうことで合っていますでしょうか?
class fallActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.main)
val a = 1
val b = 2
val c = 3
val d = 4
val e = 5
button.setOnClickListener{
when(a){
a -> text1.text = "1"
b -> text1.text = "2"
c -> text1.text = "3"
d -> text1.text = "4"
e -> text1.text = "5"
}
}
}
}
変数を用意しましたが、ここからは乱数でしか表示させる方法がわからず、行き詰っています。
ここ何日も停滞しておりまして、丸投げに等しいのは承知ですが、どうすればbuttonを押すたびに任意の数字が順番に表示できるのか、ご指導願えないでしょうか?
なるほど。丸投げというか、そもそも変数の使い方をよく分かっておられないように見受けられますね。
とりあえず変数は一つで充分ですが、onCreate の中で宣言するとローカル変数になってしまうので、fallActivity のインスタンス変数にして、ボタンが押されるたびにその値を変更して、それを表示する必要があります。
変数をひとつ、というのはこういうことでしょうか? 一つだけで、どう扱えば良いのでしょうか?
class fallActivity : AppCompatActivity() {
val a = 1
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.main)
button.setOnClickListener {
}
}
}
ボタンが押されるたびに値を変更(乱数以外で)することができずにいます。ランダムで表示することはできるのですが、自分の好きな順番で値を変更、というのが、どういったプログラムを組めば良いか、なにも考えつきません。
Kotlin の変数宣言には val と var があり、できるだけ val を使うのが好ましいのですが、val だと値を変更できないので、この場合は var で宣言する必要があります。
https://maku77.github.io/kotlin/basic/var.html
そして、OnClickListener の中で a の値をインクリメントして表示すればいいと思います。
a++
text1.text = "$a"
回答1件
あなたの回答
tips
プレビュー