我需要一些关于如何随机地给每个值R.id.buttonj_mg按钮的想法。(一对一函数...)。我不知道怎么做,因为R.id.button1_mg不是一个字符串,所以我不能像R.id.button+j+_mg那样随意选择..
这就是现在的情况:
button[1]= (Button)findViewById(R.id.button1_mg);
button[2]= (Button)findViewById(R.id.button2_mg);
button[3]= (Button)findViewById(R.id.button3_mg);
button[4]= (Button)findViewById(R.id.button4_mg);
button[5]= (Button)findViewById(R.id.button5_mg);
button[6]= (Button)findViewById(R.id.button6_mg);
button[7]= (Button)findViewById(R.id.button7_mg);
button[8]= (Button)findViewById(R.id.button8_mg);
button[9]= (Button)findViewById(R.id.button9_mg);
button[10]= (Button)findViewById(R.id.button10_mg);
button[11]= (Button)findViewById(R.id.button11_mg);
button[12]= (Button)findViewById(R.id.button12_mg);
button[13]= (Button)findViewById(R.id.button13_mg);
button[14]= (Button)findViewById(R.id.button14_mg);
button[15]= (Button)findViewById(R.id.button15_mg);
button[16]= (Button)findViewById(R.id.button16_mg);
发布于 2013-05-13 20:00:34
您可以使用一个集合将int存储为整数,然后对这些对象使用Java collection类shuffle()方法。然后,您可以从每个按钮的集合中逐个删除它们。
List<Integer> resources = new ArrayList<Integer>();
...
resources.add(R.id.button1);
...
Collections.shuffle(resources);
发布于 2013-05-13 20:07:41
一种解决方案是在代码中创建按钮及其in,而不是从资源中获取它们,请查看https://stackoverflow.com/a/11615356/987358。然后,你可以很容易地将它们存储在一个集合中,正如另一个答案所建议的那样。
另一种解决方案是Java反射API,它允许使用id名称的字符串检索id的值。
https://stackoverflow.com/questions/16529848
复制