使用BottomNavigation(而非TabView)的标签导航崩溃

时间:2019-02-26 13:44:38

标签: angular nativescript angular2-nativescript nativescript-angular

我正在尝试使用BottomNavigation而非TabView制作一个选项卡式导航应用程序。我以this example为基础,它支持嵌套的page-router-outlets。我能够使其正常运行,但是我遇到的一个问题是,当我恢复该应用程序时,它崩溃了,seen here。我认为这是因为我对page-router-outlet所做的事情很脏。

An uncaught Exception occurred on "main" thread.
java.lang.RuntimeException: Unable to resume activity {org.nativescript.nestedroutertabview/com.tns.NativeScriptActivity}: java.lang.IllegalStateException: The specified child already has a parent. You must call removeView() on the child's parent first.
at android.app.ActivityThread.performResumeActivity(ActivityThread.java:3822)
at android.app.ActivityThread.handleResumeActivity(ActivityThread.java:3854)
at android.app.servertransaction.ResumeActivityItem.execute(ResumeActivityItem.java:51)
at android.app.servertransaction.TransactionExecutor.executeLifecycleState(TransactionExecutor.java:145)
at android.app.servertransaction.TransactionExecutor.execute(TransactionExecutor.java:70)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1816)
at android.os.Handler.dispatchMessage(Handler.java:106)
at android.os.Looper.loop(Looper.java:193)
at android.app.ActivityThread.main(ActivityThread.java:6718)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:493)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:858)
Caused by: java.lang.IllegalStateException: The specified child already has a parent. You must call removeView() on the child's parent first.
at android.view.ViewGroup.addViewInner(ViewGroup.java:5034)
at android.view.ViewGroup.addView(ViewGroup.java:4865)
at android.view.ViewGroup.addView(ViewGroup.java:4805)
at android.view.ViewGroup.addView(ViewGroup.java:4778)

我将解释我所做的更改。

在app-routing.module中:我删除了行{ path: "", redirectTo: "/login", pathMatch: "full" },,因为希望app在选项卡页面而不是登录页面上启动。除了在app.component中添加this.routerExtension.navigate(["/tabs/default"], { clearHistory: true });之外,我找不到一个很好的方法。

在tabs.component.html中,这是我的页面路由器插座设置:

<GridLayout rows="*, auto">
    <page-router-outlet name="playerTab" actionBarVisibility="never" visibility="{{  (selectedTab == 0) ? 'visible' : 'collapsed' }}"></page-router-outlet>
    <page-router-outlet name="teamTab" actionBarVisibility="never" visibility="{{  (selectedTab == 1) ? 'visible' : 'collapsed' }}"></page-router-outlet>

    <StackLayout row="1" verticalAlignment="bottom">
        <BottomNavigation id="bottomNavigation" activeColor="#00C99D" [tabs]="tabs" titleVisibility="never" (tabSelected)="onBottomNavigationTabSelected($event)"></BottomNavigation>
    </StackLayout>
</GridLayout>

我只是隐藏未使用的插座,并显示当前标签。对我来说,我所做的一切似乎都不是很干净。

这是我的项目的链接:https://github.com/keerl/login-bottom-navigation-ng

感谢您的帮助。

2 个答案:

答案 0 :(得分:0)

感谢您使用我的插件:D我认为问题是您正在使用visible属性。我建议您改用ngSwitch。在主GridLayout中设置NgSwitch,然后将每个页面路由器插座包装在StackLayout中,在其中您可以设置NgCase以根据所选选项卡显示页面路由器插座。

我希望这会有所帮助:D

答案 1 :(得分:0)

我暂时找到了解决方案。如果我在可见性属性上使用'hidden'属性而不是'collapsed',那么它不会再崩溃。我仍然认为这不是这样做的正确方法,因此,如果有人有任何想法,将不胜感激。