Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

首个页面如何关闭? #6

Open
a-voyager opened this issue Mar 3, 2019 · 0 comments
Open

首个页面如何关闭? #6

a-voyager opened this issue Mar 3, 2019 · 0 comments

Comments

@a-voyager
Copy link

private static int flutterWrapperInstCnt = 0;

...

@Override
public void onBackPressed() {
    tryPopCurActivity();
}

@Override
public void tryPopCurActivity() {
    if(flutterWrapperInstCnt > 1){
        finish();
        saveFinishSnapshot(true);
    }
}

我看 FlutterWrapperActivity 中这样写的,那么作为 Root 页面的首个 FlutterWrapperActivity,应该如何实现按返回键 finish 掉呢?是要求业务方覆写 onBackPressed() 吗?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant