公告板
版本库
filestore
活动
搜索
登录
韦秀桡
/
HdlToLc
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
备份
wxr
2023-02-21
5f0c171dc58927b0c00aeb4bfe4b4f09e1ae594c
[~wxr/HdlToLc.git]
/
AndroidOpenDemo
/
DeviceAddModule
/
src
/
main
/
java
/
com
/
mm
/
android
/
deviceaddmodule
/
mobilecommon
/
base
/
mvp
/
IBasePresenter.java
1
2
3
4
5
6
7
8
9
10
11
package
com
.
mm
.
android
.
deviceaddmodule
.
mobilecommon
.
base
.
mvp
;
import
android
.
content
.
Intent
;
/**
* MVP模式P层基类接口
*/
public
interface
IBasePresenter
{
void
dispatchIntentData
(
Intent
intent
);
//处理intent数据
void
unInit
();
//反初始化,以释放相关资源
}