在 tabActivity 中,tabHost.getTabWidget().getChildCount() 返回 1

发布于 2024-10-19 08:43:38 字数 580 浏览 3 评论 0原文

我有一个 TabActivity,其中有两个选项卡显示两个列表。我使用 tabHost.getTabWidget().getChildCount() 动态更改选项卡指示器。但启动应用程序时 getChildCount 返回 1 而不是 2。

请帮助我..

我在这里附上我的代码..

 @Override
public void onTabChanged( String arg0 )
{
    if ( LIST1_TAB_TAG == tabHost.getCurrentTabTag() )
    {
        ImageView iv = (ImageView)tabHost.getTabWidget().getChildAt(0).findViewById(android.R.id.icon);
        iv.setImageDrawable(res.getDrawable(R.drawable.rupees));
        Log.v( "check", "onTabChanged :: ChildCount == " + tabHost.getTabWidget().getChildCount() );

    }

I have a TabActivity with two tabs showing two lists. I used tabHost.getTabWidget().getChildCount() to change the tab indicator dynamically. But while starting the application getChildCount returns 1 instead of two.

please help me..

I'm attaching my code here..

 @Override
public void onTabChanged( String arg0 )
{
    if ( LIST1_TAB_TAG == tabHost.getCurrentTabTag() )
    {
        ImageView iv = (ImageView)tabHost.getTabWidget().getChildAt(0).findViewById(android.R.id.icon);
        iv.setImageDrawable(res.getDrawable(R.drawable.rupees));
        Log.v( "check", "onTabChanged :: ChildCount == " + tabHost.getTabWidget().getChildCount() );

    }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

少年亿悲伤 2024-10-26 08:43:38

尝试使用 getTabWidget().getTabCount()getTabWidget().getChildTabViewAt(0)

Try using getTabWidget().getTabCount() and getTabWidget().getChildTabViewAt(0).

行至春深 2024-10-26 08:43:38

我认为 getChildCount() 是从 ViewGroup 类继承的方法,与选项卡小部件中的选项卡数量无关,用于循环选项卡小部件中的选项卡视图 使用

在选项卡活动的上下文中

for (int tabIndex = 0 ; tabIndex < getTabWidget().getTabCount() ; tabIndex ++)
{
   View tab getTabWidget().getChildTabViewAt(tabIndex);
}

如果使用 TabHost 的正常活动,则

yourTabhostVariable.getTabWidget()

I think getChildCount() is a method inherited from ViewGroup class and has nothing to do with the number of tabs in the tab widget to loop through the tab views in a tab widget use

in the context of a tab activity

for (int tabIndex = 0 ; tabIndex < getTabWidget().getTabCount() ; tabIndex ++)
{
   View tab getTabWidget().getChildTabViewAt(tabIndex);
}

if a normal activity with a TabHost use

yourTabhostVariable.getTabWidget()
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文