Android_013_利用for循环创建100个Button控件并给其添加监听器
有些时候, 在一个Activity中可能会需要大量的类型相同的控件, 比如果需要显示100 按钮, 难道我们真的就要布局文件中写100个按钮的代码吗? 其实可以在java 源文件中利用for 循环就可以一次创建100 个按钮了.
1. 先在布局文件中添加一个<ScrollView></ScrollView>标签, 让屏幕可以显示更多的内容. 在<ScrollView></ScrollView>中再添加一个<LinearLayout></LinearLayout>标签, 并这个标签设置一个ID.
布局文件main.xml的代码如下:
View Code
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:scrollbars="vertical"
android:fadingEdge="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"