탭으로 화면구성을 하려고 해서 코드를 짜는데
Tapspec은 자꾸 회색으로 뜨면서 unused import statement라고 뜨네요
TabHost tabHost = (TabHost) findViewById(android.R.id.tabhost);
tabHost.setup();
TapSpec spec1 = tabHost.newTabSpec("Tab1").setContent(R.id.tab1).setIndicator(getString(R.string.tab1));
tabHost.addTab(spec1);
TapSpec spec2 = tabHost.newTabSpec("Tab1").setContent(R.id.tab2).setIndicator(getString(R.string.tab2));
tabHost.addTab(spec2);
TapSpec spec3 = tabHost.newTabSpec("Tab1").setContent(R.id.tab3).setIndicator(getString(R.string.tab3));
tabHost.addTab(spec3);
TapSpec spec4 = tabHost.newTabSpec("Tab1").setContent(R.id.tab4).setIndicator(getString(R.string.tab4));
tabHost.addTab(spec4);
tabHost.getTabWidget().getChildAt(0).getLayoutParams().height = 80;
tabHost.getTabWidget().getChildAt(1).getLayoutParams().height = 80;
tabHost.getTabWidget().getChildAt(2).getLayoutParams().height = 80;
tabHost.getTabWidget().getChildAt(3).getLayoutParams().height = 80;
이런식으로 코드 짜나가고 있는데.. 왜 import가 안되는 거죠??
운영체제는 MACOS입니다