Button
which を呼び出すAndroid アプリを作成していますSelfDestruct()
。ランダムに選択されたまたはTextView
が表示されるはずの もあります。ただし、 が表示されている場合は、常に設定されます。常に乱数を作成する必要があります。1
2
1
1
2
これは私のコードです。誰かがこれを達成するのを手伝ってくれませんか...
public class MainActivity extends Activity
{
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
@Override
public void SelfDestruct(View View)
{
TextView tx= (TextView) findViewById(R.id.text);
Random r = new Random();
int x=r.nextInt(2-1) + 1;
if(x==1)
{
tx.setText("1");
}
else if(x==2)
{
tx.setText("2");
}
}
}