如何在tabhost和活动之间进行通信

时间:2010-12-14 02:54:45

标签: android android-tabhost

我创建了我的代码:

        final TabHost tabHost = getTabHost();

        tabHost.addTab(tabHost.newTabSpec("Month")
                .setIndicator("Month")
                .setContent(new Intent(this, MonthView.class)));

如何在月视图类中与tabhost进行通信?

1 个答案:

答案 0 :(得分:3)

使用MonthView上的getParent()方法。