码迷,mamicode.com
首页 > 移动开发 > 详细

安卓随机排列数据

时间:2015-02-11 02:01:57      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:安卓 随机 排列

String[] date = { t1.getText().toString(), t2.getText().toString(),
				t3.getText().toString(), t4.getText().toString(),
				t5.getText().toString() };
		List list = Arrays.asList(date);
		Collections.shuffle(list);
		t1.setText("" + list.get(0));
		t2.setText("" + list.get(1));
		t3.setText("" + list.get(2));
		t4.setText("" + list.get(3));
		t5.setText("" + list.get(4));


安卓随机排列数据

标签:安卓 随机 排列

原文地址:http://luoguoxin.blog.51cto.com/8845916/1613485

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!