gpt4 book ai didi

安卓问题: Can the tabhost be put in one of the tab?

转载 作者:行者123 更新时间:2023-11-30 04:36:51 25 4
gpt4 key购买 nike

我有一些信息想以层叠方式显示,并且更喜欢以标签方式显示。

所以我的想法是将一个 TabHost 嵌入到另一个父 TabHost 的一个选项卡中。

我可以让一层 TabHost 工作,但是当我尝试将另一个 TabHost 添加到其中一个选项卡时,它总是给出错误:

未找到与给定名称匹配的资源(在“id”处,值为“@android:id/tabhostDiagnosis”

以前有人遇到过同样的问题吗?

这是我的代码(删除了多余的部分)

<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost" android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout android:orientation="vertical"
android:layout_width="fill_parent" android:layout_height="fill_parent">
<TabWidget android:id="@android:id/tabs"
android:layout_width="fill_parent" android:layout_height="wrap_content" />
<FrameLayout android:id="@android:id/tabcontent"
android:layout_width="fill_parent" android:layout_height="fill_parent">

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:id="@+id/Diagnosis">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent">

<!-- -->
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhostDiagnosis"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout android:orientation="vertical"
android:layout_width="fill_parent" android:layout_height="fill_parent">
<!-- -->
<TabWidget android:id="@android:id/tabsDiagnosis"
android:layout_width="fill_parent" android:layout_height="wrap_content" />

<FrameLayout android:id="@android:id/tabcontentDiagnosis"
android:layout_width="fill_parent" android:layout_height="fill_parent">

</FrameLayout>
</LinearLayout>
</TabHost>
</LinearLayout>
</ScrollView>


</FrameLayout>
</LinearLayout>
</TabHost>

最佳答案

我研究了the source code对于 TabHost。

它将通过 R.id.x 直接引用 TabWidget(或 FrameLayout)。

mTabWidget = (TabWidget) findViewById(com.android.internal.R.id.tabs);

这基本上停止了将 TabHost 嵌入到另一个中。

所以答案是它不会起作用。

关于安卓问题: Can the tabhost be put in one of the tab?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6703667/

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