https://www.youtube.com/watch?v=EOfCEhWq8sg&t=294s
override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContentView(R.layout.activity_main) val rollButton = findViewById<Button>(R.id.rollButton) val resultsText = findViewById<TextView>(R.id.resultText) val seekBar = findViewById<SeekBar>(R.id.seekBar) rollButton.setOnClickListener{ val rand = Random().nextInt(seekBar.progress) //bondInt resultsText.text = rand.toString() }}}
Из видео похоже, что ваш R.id.resultText должен быть R.id.resultsTextView
R.id.resultText
R.id.resultsTextView