맵뷰라는 맵엑티비티를 탭호스트 안에 넣고 싶은데 넣으면 자꾸 에러가 납니가.. 해결방법을 여쭤봅니다.
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
final TabHost tabHost = getTabHost();
tabHost.addTab(tabHost.newTabSpec("tab1")
.setIndicator("list1")
.setContent(new Intent(this,mapView.class)));//<-맵뷰라는 맵엑티비티를 탭호스트안에 넣고 싶습니다.
tabHost.addTab(tabHost.newTabSpec("tab2")
.setIndicator("list2")
.setContent(new Intent(this,LocationProximityActivity.class)));
// 클릭할때 마다 리플레쉬
tabHost.addTab(tabHost.newTabSpec("tab3")
.setIndicator("destroy")
.setContent(new Intent(this,LocationProximityActivity.class)
.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP)));
}
}