美文网首页
android[unchecked call to as a m

android[unchecked call to as a m

作者: feng__ | 来源:发表于2019-11-19 15:55 被阅读0次

    之前的HomePageContract

    public interface HomeFraPageContract {
    
        interface View<T> extends BaseView {
            /**
             * 获取首页顶部5个数据成功
             * @param data
             */
            void getTop5Success(T data);
        }
    
        interface Presenter extends BasePresenter<View> {
            /**
             * 首页顶部5个数据
             * @param activity activity
             */
            void getTop5(BaseActivity activity);
    }
    

    之前的Presenter

    private IGetDataDelegate<EntityForTop5> mGetDataDelegate = new IGetDataDelegate<EntityForTop5>() {
            @Override
            public void getDataSuccess(EntityForTop5 entity) {
                //studio高亮了下面这个方法 见图1
                mPresenterView.getTop5Success(entity);
            }
    
            @Override
            public void getDataError(String msg) {
                //mPresenterView.showToast(msg);
            }
        };
    
    图1

    高亮的原因大概是泛型使用不规范。为了不让studio再高亮,也为了代码看起来更清爽,直接在方法里面指定了类型,做了如下的修改。
    修改后的HomePageContract

    public interface HomeFraPageContract {
    
        interface View extends BaseView {
            /**
             * 获取首页顶部5个数据成功
             * @param data
             */
            void getTop5Success(EntityForTop5 data);
        }
    
        interface Presenter extends BasePresenter<View> {
            /**
             * 首页顶部5个数据
             * @param activity activity
             */
            void getTop5(BaseActivity activity);
    }
    

    Presenter不用改变,高亮已经消失了。见图2

        private IGetDataDelegate<EntityForTop5> mGetDataDelegate = new IGetDataDelegate<EntityForTop5>() {
            @Override
            public void getDataSuccess(EntityForTop5 entity) {
                mPresenterView.getTop5Success(entity);
            }
    
            @Override
            public void getDataError(String msg) {
                //mPresenterView.showToast(msg);
            }
        };
    
    图2

    相关文章

      网友评论

          本文标题:android[unchecked call to as a m

          本文链接:https://www.haomeiwen.com/subject/skzwictx.html