gpt4 book ai didi

android - 为什么我的 TabHost 子 Activity 找不到父 TabHost ID?

转载 作者:搜寻专家 更新时间:2023-11-01 09:08:59 26 4
gpt4 key购买 nike

我有一个正在切换 Activity 的 TabHost Activity ,所以我的主要内容如下所示:

<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:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:padding="5dp" >

<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="-4dp"
android:layout_weight="0" />

<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:padding="5dp" />
</LinearLayout>

</TabHost>

我的一个子 Activity XML 是一个 ListView:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<ListView
android:id="@+id/list"
android:layout_width="match_parent"
android:layout_height="wrap_content" >

</ListView>

</LinearLayout>

在这个子 Activity 中,(扩展 ListActivity)我试图找到父 TabHost:

TabHost tabHost = (TabHost) getParent().findViewById(R.id.tabhost);
tabHost.setCurrentTab(0);

但是,找不到 R.id.tabhost(无法解析 tabhost id)。
我做错了什么?

最佳答案

让它成为android.R.id.tabhost它会起作用。

关于android - 为什么我的 TabHost 子 Activity 找不到父 TabHost ID?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9761266/

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