修复了二次打开面板出行动态没有刷新问题

This commit is contained in:
董宏宇
2020-08-14 15:19:43 +08:00
parent 1797e34579
commit 8e262c320b
3 changed files with 97 additions and 92 deletions

View File

@@ -83,6 +83,10 @@ public abstract class MvpFragment<V extends IView, P extends Presenter<V>> exten
@NonNull
protected abstract P createPresenter();
public P getPresenter() {
return mPresenter;
}
@Nullable
protected <T extends View> T findViewById(int id) {
if (mRootView == null) {