转到另一个活动而不包含旧活动的布局

时间:2018-11-24 11:25:47

标签: android android-studio

我正在尝试从一个活动移动/打开到另一个活动,但是不幸的是,以前的旧布局总是会出现并从当前活动中叠加到新的布局中(请参见图片)。

上一个活动的布局:

enter image description here

在我单击条形码图标后,会发生这种情况(两个蓝色框不应该出现在其中):

enter image description here

这是我打开新活动的方式:

val inventoryIntent = Intent(this, InventoryActivity::class.java)
        inventoryIntent.putExtra("go_to_fragment", "add_stock")

        startActivity(inventoryIntent)
        this.finish()

如何打开新活动而不包含那些蓝色框或以前活动中的任何内容?

0 个答案:

没有答案