ボタンがランダムに点滅していて、毎回正確な番号が選択されていることを知りたいので、私がやっているプロジェクトのために最終的にそれらをArrayList
に追加することができます。TextViewで生成された乱数を表示するにはどうすればよいですか?
TextView randomTextView;
Random r = new Random();
private void sequenceFunction() {
//Change Alpha from Fully Visible to Invisible
final Animation animation = new AlphaAnimation(1, 0);
//Duration - A Second
animation.setDuration(1000);
//Animation Rate
animation.setInterpolator(new LinearInterpolator());
animation.setStartOffset(250);
animation.setDuration(250);
//Repeat Animation
animation.setRepeatCount(r.nextInt(10));
// Reverse animation at the end so the button will fade back in
animation.setRepeatMode(Animation.REVERSE);
//Button 1 Flashes
final Button btn = (Button) findViewById(R.id.button);
btn.startAnimation(animation);
btn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(final View view) {
view.clearAnimation();
}
});
}
私が今までに乱数がrandomTextView TextView
を介して生成された内容の結果を表示したいです。この部分は、ランダム関数が想定されているとおりに動作していることを知るために重要です。私はすでに試しました
randomTextView.setText(r.nextInt(10));
しかし、それはそれが好きではありませんでした。選択された乱数を取得する方法に関するアイデアは非常に高く評価されますか?
'randomTextView.setText( "" + r.nextInt(10));あなたはrandomTextView.setText(r.nextInt'については好きではないものを ' –
(10 )) '? – TWL
@TWL 'setText()'には、CharSequenceまたはリソースIDが必要です。それは明らかにそうではありません。 –