1

否则,我在我的应用程序中使用 Mosby 是成功的。我现在想将演示者添加到NavigationView控件中。我已经重写了控件以封装类似于视图的内容,例如添加菜单项和动态显示的子控件。

我现在想将所有演示者的代码从MainActivity.java一个NavigationDrawerPresenter类中移动,并且我想使用 Mosby。

我已经阅读了 Mosby 文档,但没有看到它在哪里解释了如何将演示者附加到我从位于 Activity 布局深处的 SDK 扩展的 View 控件上。我收集到我可以直接使用 ViewGroupMvpDelegateImpl 并手动将所有生命周期事件从视图委托给委托。(这是正确的方法吗?)

在 的情况下NavigationView,这是有问题的。

NavigationView继承自ScrimInsetsFrameLayout。它不允许我们覆盖onAttachedToWindowonDetachedFromWindow。它回应:

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> {
        // ...
    }

}
4

1 回答 1

0

嗯,我也遇到了同样的问题。我认为我们可以使用

 addOnAttachStateChangeListener(object : OnAttachStateChangeListener {
        override fun onViewDetachedFromWindow(v: View?) {
            TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
        }

        override fun onViewAttachedToWindow(v: View?) {
            TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
        }

    })
于 2018-03-20T09:17:36.083 回答