TabHost tabHost = getTabHost();
Intent intent;
intent = new Intent(MainActivity.this, SecondActivity.class);
tabHost.addTab(tabHost.newTabSpec("").setIndicator("", getResources().getDrawable(R.drawable.home_selected)).setContent(intent));
intent = new Intent(MainActivity.this, Calendar.class); //2
tabHost.addTab(tabHost.newTabSpec("").setIndicator("",getResources().getDrawable(R.drawable.calender_unselect)).setContent(intent));
非常host.getTabWidget()getChildAt(1).setBackgroundResource(R.drawable.myimage)のuをありがとうsetIndicator("Tab text", getResource(). ...)
内部の任意のテキストを書いていません。私の問題を解決する。 – rwe