diff --git a/ui/tab-view/tab-view.android.ts b/ui/tab-view/tab-view.android.ts index 37a6b6fa9..ed71a23cf 100644 --- a/ui/tab-view/tab-view.android.ts +++ b/ui/tab-view/tab-view.android.ts @@ -244,7 +244,9 @@ export class TabView extends common.TabView { } item._parent = this; - this._addView(item.view, idx); + if (item.view.parent !== this) { + this._addView(item.view, idx); + } tabItems.push(this.createTabItem(item)); });