标签: android android-tabhost
我创建了我的代码:
final TabHost tabHost = getTabHost(); tabHost.addTab(tabHost.newTabSpec("Month") .setIndicator("Month") .setContent(new Intent(this, MonthView.class)));
如何在月视图类中与tabhost进行通信?
答案 0 :(得分:3)
使用MonthView上的getParent()方法。
MonthView
getParent()