否则,我在我的应用程序中使用 Mosby 是成功的。我现在想将演示者添加到NavigationView
控件中。我已经重写了控件以封装类似于视图的内容,例如添加菜单项和动态显示的子控件。
我现在想将所有演示者的代码从MainActivity.java
一个NavigationDrawerPresenter
类中移动,并且我想使用 Mosby。
我已经阅读了 Mosby 文档,但没有看到它在哪里解释了如何将演示者附加到我从位于 Activity 布局深处的 SDK 扩展的 View 控件上。我收集到我可以直接使用 ViewGroupMvpDelegateImpl 并手动将所有生命周期事件从视图委托给委托。(这是正确的方法吗?)
在 的情况下NavigationView
,这是有问题的。
NavigationView
继承自ScrimInsetsFrameLayout
。它不允许我们覆盖onAttachedToWindow
或onDetachedFromWindow
。它回应:
ScrimInsetsFrameLayout.onAttachedToWindow can only be called from within the same library group (groupId=com.android.support)
这似乎是莫斯比的一个亮点。如果没有这个覆盖,我不知道如何将 Mosby 的委托附加到生命周期事件。
如何将演示者附加到从 Android SDK 扩展的视图?
public class NavigationDrawerView extends NavigationView
implements NavigationDrawerContract.View,
ViewGroupDelegateCallback<NavigationDrawerContract.View, NavigationDrawerContract.Presenter>, MvpView,
NavigationView.OnNavigationItemSelectedListener {
protected ViewGroupMvpDelegate<NavigationDrawerContract.View, NavigationDrawerContract.Presenter> mvpDelegate;
protected NavigationDrawerContract.Presenter presenter;
//...
public NavigationDrawerView(Context context) {
super(context);
}
public NavigationDrawerView(Context context, AttributeSet attrs) {
super(context, attrs);
}
public NavigationDrawerView(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
}
//...
@NonNull
protected ViewGroupMvpDelegate<NavigationDrawerContract.View, NavigationDrawerContract.Presenter> getMvpDelegate() {
if (mvpDelegate == null) {
mvpDelegate = new ViewGroupMvpDelegateImpl<>(this, this, true);
}
return mvpDelegate;
}
@Override
protected void onAttachedToWindow() {
super.onAttachedToWindow();
getMvpDelegate().onAttachedToWindow();
}
@Override
protected void onDetachedFromWindow() {
super.onDetachedFromWindow();
getMvpDelegate().onDetachedFromWindow();
}
//...
}
public class NavigationDrawerPresenter
extends MvpNullObjectBasePresenter<NavigationDrawerContract.View>
implements NavigationDrawerContract.Presenter {
//...
}
public interface NavigationDrawerContract {
interface View extends MvpView {
// ...
}
interface Presenter extends MvpPresenter<View> {
// ...
}
}