我读过关于集合来随机化对象的顺序。有了这个,我想尝试在我的 android 应用程序中随机化我的按钮。
这里有一段代码:
Button[] bObject = new Button[6];
private void getCorrectObject() {
// TODO getCorrectObject
List<Integer> objects = new ArrayList<Integer>();
objects.add(0);
objects.add(1);
objects.add(2);
objects.add(3);
objects.add(4);
// Shuffle the collection
Collections.shuffle(objects);
bObject[objects]; // I'm having trouble implementing the shuffle logic here.
}
因此,任何有帮助的回应都会受到真正的赞赏。谢谢。