我有一个对象数组,希望能够在按下按钮时从列表中随机选择一个对象。在安卓系统中你会怎么做?
最佳答案
在你的onclicklistener里做这样的事情
Random rand = new Random();
int selector = rand.nextInt(yourList.length);
yourList.get(selector);
差不多吧。
编辑:实际上,如果它是一个arraylist,那么它将更像这样
Random rand = new Random();
int selector = rand.nextInt(yourList.size());
yourList.get(selector);