onCreateメソッドでテキストのサイズと色をランダムに設定したい
これが私のコードです:
private TextView start;
private boolean isClicked;
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
start = (TextView) findViewById(R.id.tvStart);
isclick = false;
Random r = new Random();
while (isclick = false)
{
start.setTextSize(r.nextInt(50));
start.setTextColor(Color.rgb(r.nextInt(256), r.nextInt(256),
r.nextInt(256)));
}
}
私のこのコードは機能しません。
onCreate の間、テキストのサイズと色を継続的かつランダムに変更したいと考えています。