微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

android接口回调和context和activity转换

我的应用场景是Activity向适配器里传递数据,activity—> adapter

示例 activity代码:

    /**
     * 定义一个接口
     */
    public interface onListener {
        void OnListener(Boolean isPlayTrue);
    }
    /**
     * 提供公共的方法,并且初始化接口类型的数据
     */
    public void setListener(onListener listener) {
        this.listener = listener;
    }

    boolean isPlayTrue = false;

//在需要触发的地方调用:
//播放标记为true
                        isPlayTrue = true;
                        if (listener != null) {
                            listener.OnListener(isPlayTrue);
                        }

示例 adapter代码:

适配器实现act的哪个接口

RecyclerItemnormalVpHolder extends RecyclerItemBaseHolder implements IndexPageActivity.onListener{

//在初始化方法里
    public RecyclerItemnormalVpHolder(Context context, View v) {
        super(v);
        this.context = context;
        ButterKnife.bind(this, v);
        //imageView = new ImageView(context);
        gsyVideoOptionBuilder = new GSYVideoOptionBuilder();

        IndexPageActivity indexAct = (IndexPageActivity) context;//环境强转成包含接口的类,同步监听
        indexAct.setListener(this);
    }

@Override
    public void OnListener(Boolean isTrue) {
        if (isTrue == true) {
            System.out.println("555");
            //播放视频
            //gsyVideoPlayer.startPlayLogic();
        }
    }
}

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐