其他分享
首页 > 其他分享> > 第六章:android入门

第六章:android入门

作者:互联网

目录

安卓入门

十、组件学习

1、Activity
// 按钮点击事件
public void openActivity(View view) {
    startActivity(new Intent(this, MainActivity2.class));
}
onCreate(->onRestart)->onStart->onResume->onPause->onStop->onDestroy
2、Service

3、Receiver

标签:入门,安卓,Receiver,组件,activity,第六章,android,跳转
来源: https://www.cnblogs.com/linding/p/15710500.html