gpt4 book ai didi

android - FragmentTabHost 图形布局不呈现

转载 作者:IT王子 更新时间:2023-10-29 00:02:33 27 4
gpt4 key购买 nike

简单的 android.support.v4.app.FragmentTabHost 的图形布局永远不会在 Eclipse 或 Android Studio 中呈现。
我得到的控制台错误是一致的:
渲染期间引发异常:没有已知标签为 null 的选项卡

我使用的是最基本的 XML 文件:

<android.support.v4.app.FragmentTabHost
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="match_parent"
android:layout_height="match_parent">

<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">

<TabWidget
android:id="@android:id/tabs"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0"/>

<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_weight="0"/>

<FrameLayout
android:id="@+id/realtabcontent"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"/>

</LinearLayout>
</android.support.v4.app.FragmentTabHost>

但同样的错误发生了。

我只是想在选项卡小部件和框架布局的上方或下方添加更多 View 。
我不太关心看到标签内容;我只想看看 我的布局的其余部分 - 但问题是当一个 android.support.v4.app.FragmentTabHost 驻留在布局中

我已阅读并尝试通过此帖子的答案解决问题:
Android: Tabs at the bottom with FragmentTabHost
但我不认为那是我的问题;我不想在底部放置 TabWidget。

我的每个其他 XML 文件都可以完美打开。

同样的问题出现在Android Studio中:
Android Studio doesn't render this either

最佳答案

我遇到了同样的渲染问题以及编译错误。我通过发现在创建 Addtab 时没有传递 Fragment 来解决问题。您必须在 mTab​​Host.addTab 上传递至少一个 fragment 。下面是工作代码。

private FragmentTabHost mTabHost;
mTabHost = (FragmentTabHost)findViewById(android.R.id.tabhost);
mTabHost.setup(HomeActivity.this, getSupportFragmentManager(), android.R.id.tabcontent);

mTabHost.addTab(mTabHost.newTabSpec("home").setIndicator("Home"), HomeFragment.class, null);
mTabHost.addTab(mTabHost.newTabSpec("mysheets").setIndicator("MySheets"));
mTabHost.addTab(mTabHost.newTabSpec("bookmarks").setIndicator("Bookmarks"));

关于android - FragmentTabHost 图形布局不呈现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14370745/

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