タブバーでパラメータを渡すにはどうすればよいですか? これは以下の私のコードです。任意のタブバーをクリックしたときにタブバーでアクティビティを開始するときにパラメーターを渡したいのですが、パラメーターを渡すにはどうすればよいですか?
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main2);
setTabs() ;
}
private void setTabs()
{
addTab("payments", R.drawable.tab_home, myactivity1.class.class);
addTab("My Account", R.drawable.tab_home, myactivity2.class);
addTab("Spend Analyzer", R.drawable.tab_home, myactivity3.classs);
addTab("Notification", R.drawable.tab_home, myactivity4.class);
addTab("Help", R.drawable.tab_home, myactivity5.class);
}
private void addTab(String labelId, int drawableId, Class<?> c)
{
TabHost tabHost = getTabHost();
Intent intent = new Intent(this, c);
TabHost.TabSpec spec = tabHost.newTabSpec("tab" + labelId);
View tabIndicator = LayoutInflater.from(this).inflate(R.layout.tab_indicator, getTabWidget(), false);
TextView title = (TextView) tabIndicator.findViewById(R.id.title);
title.setText(labelId);
ImageView icon = (ImageView) tabIndicator.findViewById(R.id.icon);
icon.setImageResource(drawableId);
spec.setIndicator(tabIndicator);
spec.setContent(intent);
tabHost.addTab(spec);
}
}