我有 Activity ,位于2晶圆厂和文本。我需要在全屏上添加ArFragment。如果我使用xml添加此片段,则会显示2个fab和文本。但是,如果我使用supportFragmentManager.beginTransaction().add(R.id.ontainer, ArFragment()).commit(),它仅显示2个fab之后,文本消失。我该如何解决它,因为我需要以编程方式使用。

android - ArFragment在Activity上隐藏了一些 View ,以编程方式添加它-LMLPHP

最佳答案

我使用ViewCompat.setTranslationZ(view, 1.0f)解决问题

09-27 15:10