返回顶部
摘要: myservice package com.ttit.core.service; import android.app.Service; import android.content.Intent; import android.os.Binder; import android.os.IBinde 阅读全文
posted @ 2020-09-10 18:13 meng2113 阅读(147) 评论(0) 推荐(0)
摘要: 一、Android启动模式详解 1、standard模式: 标准启动模式,也是activity的默认启动模式。在这种模式下启动的activity可以被多次实例化,即在同一个任务中可以存在多个activity的实例,每个实例都会处理一个Intent对象。如果Activity A的启动模式为standa 阅读全文
posted @ 2020-09-10 17:04 meng2113 阅读(297) 评论(0) 推荐(0)
摘要: 1、主页跳转至另一个页面 2、另一个页面接收数据 3、第二个页面按返回键携带数据返回 4、返回后主页面重写方法来接收数据 阅读全文
posted @ 2020-09-10 15:57 meng2113 阅读(317) 评论(0) 推荐(0)
摘要: 1、清单AndroidManifest.xml 所有页面全部注册在清单中 2、页面的跳转(两种方式) 3、页面间的活动及生命周期 阅读全文
posted @ 2020-09-10 15:09 meng2113 阅读(159) 评论(0) 推荐(0)