import android.widget.*;
import android.os.*;
import android.app.*;
import android.graphics.*;
import android.view.*;
public class MainActivity extends Activity{
窗体 my;
FrameLayout f=null;
public void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
f=new FrameLayout(this);
my=new 窗体(this);
int i=0;
while(i<10){
文本按键 wb=new 文本按键(10,i*70,500,50,"hello world!"){
public void 功能(MotionEvent e){
//重写功能方法按键点击后执行
System.exit(0);
}
};
wb.背景颜色=Color.rgb(100,100,100);
my.环境.装入对象(wb);
i++;
}
while(i<20){
文本按键 wb=new 文本按键(10,i*70,500,50,"hello world!"){
public void 功能(MotionEvent e){
System.exit(0);
}
};
wb.背景颜色=Color.rgb(200,200,200);
wb.样式=1;
my.环境.装入对象(wb);
i++;
}
f.addView(my);
setContentView(f);
}
}