android 回调函数使用简介
Posted 工作学习生活思考总结
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android 回调函数使用简介相关的知识,希望对你有一定的参考价值。
//1---定义回调函数
public interface GirdMenuStateListener {
void onSuccess();
void onError();
}
//2---使用的地方声明 和 调用 回调函数 传递结果
public class GirdMenuViewPresenter
{
private GirdMenuStateListener listener;
public void setListener(GirdMenuStateListener listener) {
this.listener = listener;
}
public void loadData(final GirdMenuView gridMenuView) {//自定义方法中使用
if (listener != null)
{
listener.onSuccess();
}
}
}
//3----接收 回调函数结果
public class Presenter extend Activity implements GirdMenuStateListener {
private GirdMenuStateListener listener;
private void onCreate()
{
listener=this;
GirdMenuViewPresenter.setListener(listener);
}
@Override
void onSuccess(){
}
@Override
void onError(){
}
}
注意:可以参考系统控件自带的click及相关事件,都是回调函数的写法。
以上是关于android 回调函数使用简介的主要内容,如果未能解决你的问题,请参考以下文章
在java中回调函数怎么理解,android中的回调函数和java中有区别吗?
java 回调函数使用runonUIthread为android