1차시도
onCrete안에
tabHost = getTabHost();
tabHost.setOnTabChangedListener(this);
TabSpec spec;
Intent intent;
tabHost.setup(this.getLocalActivityManager());
intent = new Intent().setClass(this, AA.class);
spec = tabHost.newTabSpec("First").setIndicator("AA", getResources().getDrawable(R.drawable.ic_navbar_xhdpi_13))
.setContent(intent);
//Add intent to tab
tabHost.addTab(spec);
실패 ㅠㅠ 글씨만 나옵니다.
2차
iv = (ImageView)tabHost.getTabWidget().getChildAt(0).findViewById(android.R.id.icon);
iv.setImageResource(R.drawable.ic_navbar_xhdpi_13);
요것도 안먹네요 ㅠㅠ 그냥 글씨만 나와요!
제가 뭐 실수한게 있을까요? 후어 ㅠㅠ