第一次体验 Google Android 手机开发
2010-05-26 15:28:00 来源:WEB开发网核心提示:import android.os.Bundle;import android.view.View;import android.widget.Button;import android.widget.TextView;public class HelloAndroid extends Activity {privat
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
public class HelloAndroid extends Activity {
private Button helloAndroidBtn;
private TextView outTxtView;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
helloAndroidBtn=(Button)findViewById(R.id.helloBtn);
outTxtView=(TextView)findViewById(R.id.outtext);
helloAndroidBtn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
outTxtView.setText("Hello Android,i love you");
}
});
}
}
8.按F11运行此程序,便可在模拟器上进行测试,效果如下所示:
[]
- ››Google运作经理Bryan Power给出的GOOGLE求职意见
- ››Google用户体验的十大设计原则
- ››Google Analytics(分析)能为网站带来什么
- ››第一次建站失败的经历 获取了宝贵的心得
- ››Google goggles图片搜索 如何优化一个wap网站
- ››Google Docs将增加iPhone和Android编辑功能
- ››体验全新战略RPG 千橡《上古之光》今日开启封测
- ››体验Discuz! X1.5搜索新变革 挖掘内容更方便
- ››体验俄罗斯引擎制作的次世代游戏
- ››Google Android操作系统内核编译图文教程
- ››google map api 与jquery结合使用--控件,监听器...
- ››google map api 与jquery结合使用(2) --标注,浮...
更多精彩
赞助商链接