我想制作一个生成随机消息而不重复的应用程序(仅用于学习目的)。
我在 onCreate 方法中有这段代码:
imgbutton2 = (ImageButton) findViewById(R.id.imgbutton2);
int n=3;
int v1[] = new int[n];
v1[0] = 0;
v1[1] = 0;
v1[2] = 0;
int i, j;
for(i=0;i<n;i++){
for(j=0; ;j++){
Random rn = new Random();
int range = 3;
int r = rn.nextInt(range) 1;
if(r != v1[0] & r != v1[1] & r != v1[2]) {
v1[i] = r v1[i];
textView1=new TextView(this);
switch (r) {
case 1:
textView1 = (TextView) findViewById(R.id.textView1);
textView1.setText("Message 1");
break;
case 2:
textView1 = (TextView) findViewById(R.id.textView1);
textView1.setText("Message 2");
break;
case 3:
textView1 = (TextView) findViewById(R.id.textView1);
textView1.setText("Message 3");
break;
}
break;
}
}
imgbutton2.setOnClickListener(new View.OnClickListener(){
public void onClick(View v){
Intent i = null;
}});
}
我在 imgbutton2 中放置了一个空函数(位于第一个 FOR 中),等待用户单击,然后继续阅读以再次在第一个 FOR 中输入 i=1),但它不起作用。
这个想法是在单击按钮时生成一条新消息。
谁能帮我?