在我的FragmentContainerView对象中找不到方法getFragment()
在XML中我有
<androidx.fragment.app.FragmentContainerView
android:id="@+id/identifications_map_view"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:visibility="gone"
android:layout_width="match_parent"
android:layout_height="match_parent" />
我想从视图中获取片段。documentation建议使用
FragmentContainerView fcv = findViewById(R.id.identifications_map_view);
SupportMapFragment smf = fcv.getFragment()
但Android Studio无法解析符号,如果我按住Ctrl并单击";FragmentContainerView";,当我使用Ctrl+F进行搜索时,它不会显示getFragment()。
我知道还有另一种方法可以获得碎片,但我想知道为什么我不能用这种方法。我猜版本有问题,因为我的类似乎有一个比文档旧的版本,例如,还有一个使用FragmentManager的额外构造函数,在文档中找不到。 这可能是最小的API问题吗?我有24个。
谢谢。
解决方案
1.4.0-alpha01(https://developer.android.com/jetpack/androidx/releases/fragment#1.4.0-alpha01)
如果您使用的是较低版本,它将不在那里。
相关文章