gpt4 book ai didi

android - FragmentContainerView 是否有相当于 "tools:layout="的内容?

转载 作者:行者123 更新时间:2023-12-03 13:24:32 24 4
gpt4 key购买 nike

为了在 Android Studio 中预览布局时能够看到 fragment 内某个 View 的内容,可以执行 this :

<MainLayoutView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools">

<fragment
...
tools:layout="@layout/my_fragment_view"/>

</MainLayoutView>

但是,如果您从 fragment 切换至 androidx.fragment.app.FragmentContainerView ,这个方便的工具停止工作, fragment 在预览屏幕上只是显示为空白。

有没有办法在 FragmentContainerView 中显示内容?在 Android Studio 的布局中预览它时?

最佳答案

comment by tir38 中所述这已在更高版本的 Android Studio 中得到修复,您现在可以在 FragmentContainerView 中使用 tools:layout 属性。如果您使用 Navigation component ,
如果您为 Navigation graph 定义 startDestination
它使用 tools:layout 属性,这将自动反射(reflect)在您的 FragmentContainerView

<androidx.fragment.app.FragmentContainerView 
...
app:navGraph="@navigation/nav_graph"/>


<navigation
...
app:startDestination="@id/someFragment">
<fragment
...
android:id="@+id/someFragment"
tools:layout="@layout/fragment_splash"/>
</navigation>

关于android - FragmentContainerView 是否有相当于 "tools:layout="的内容?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59007007/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com