gpt4 book ai didi

android - TabHost 开头不显示内容

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:07:14 25 4
gpt4 key购买 nike

我有一个带有两个选项卡的 TabActivity。 Activity 布局如下:

<?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"
android:padding="5dp">

<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"
android:padding="5dp">
<ListView android:id="@+id/list"
android:layout_width="fill_parent" android:layout_height="fill_parent" />

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

布局由一个 ListView 组成,该 ListView 在 setOnTabChangedListener() 中相应地填充。填写列表并显示它没有问题。

我的问题是当 Activity 开始时 ListView 没有显示,尽管我通过 ID 找到它并填充它;只有在我更改选项卡后才会填充它。

onCreate(..) 中的代码如下所示:

l = (ListView) findViewById(R.id.list);
l.setAdapter(new CommentsAdapter(this, (JSONArray) obj));

TabSpec spec;
spec = tabHost.newTabSpec("0").setIndicator("0",
res.getDrawable(R.drawable.tab_recent)).setContent(
R.id.list);
tabHost.addTab(spec);

spec = tabHost.newTabSpec("1").setIndicator("1",
res.getDrawable(R.drawable.tab_pop)).setContent(
R.id.list);
tabHost.addTab(spec);

tabHost.setOnTabChangedListener(new OnTabChangeListener() {

@Override
public void onTabChanged(String tabId) {
// TODO Auto-generated method stub
int tab = Integer.valueOf(tabId);
showDialog(WAIT_DIALOG);

switch (tab) {
// recent
case 0:
//refill the list
break;
// popular

case 1:
//refill the list
break;
}
}
});

tabHost.setCurrentTab(0);

有什么提示吗?

最佳答案

我遇到了类似的问题。我注意到,如果你这样做

tabHost.setCurrentTab(0);

然后 onTabChanged 不会被触发。但是,如果你这样做了

tabHost.setCurrentTab(1);

然后就是这样,列表出现了,一切都很好。至于为什么会这样,我还是有点不解。

使用此秘籍在第一个选项卡上启动您的应用程序:在 onCreate() 中,在创建选项卡后首先调用:tabHost.setCurrentTab(1);然后调用:tabHost.setCurrentTab(0);

关于android - TabHost 开头不显示内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5611623/

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