package com.mm.android.deviceaddmodule.base; import android.content.Context; /** * MVP模å¼Vå±‚æŽ¥å£ **/ public interface IBaseView<T extends IBasePresenter> { Context getContextInfo(); boolean isViewActive(); //View层是å¦å¤„äºŽæ´»åŠ¨çŠ¶æ€ //Toast void showToastInfo(String msg); void showToastInfo(int msgId); void showProgressDialog(); void cancelProgressDialog(); }