2024-09-28 05:36:04
通过数组循环显示到TextView上。
1、获取数组
2、获取TextView组件
3、循环拼接数组成
示例:
String[] arr={"a","b","c"};//定义一个数组,模拟获取到的数组
TextView tv = (TextView)findViewById(R.id.xxxx);//获取一个TextView
String ct = "";//定义一个字符串
for(int i=0;i<arr.length;i++){
ct = ct + arr[i];//数组拼接成字符串
}
tv.setText(ct);//在TextView中显示数组内容。
2024-09-28 06:45:43
2024-09-28 06:18:39
2024-09-28 14:12:01
2024-09-28 01:06:41