这个界面实际上有五个选项卡。并且有标题“显示地图”,用于显示地图。当我点击选项卡项目时,相应的屏幕将显示在 FrameLayout 中,如图所示。
同样,我想在相同的 FrameLayout 中显示地图,并单击显示为标题的“显示地图”。
这是我的代码。
LinearLayout im=(LinearLayout)findViewById(R.id.appactivity);
im.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
//I need to write the code to display the map in FrameLayout here.
}
});
addTab("Search",0, getResources().getDrawable( R.drawable.search_tab ), Venkat.class);
addTab("Favorite",1, getResources().getDrawable( R.drawable.fav_tab ),FavlistScreen.class);
addTab("List",2, getResources().getDrawable( R.drawable.list_tab ),AdslistScreen.class);
addTab("Filter",3, getResources().getDrawable( R.drawable.fav_tab ), FilterScreen.class);
addTab("Contact Us",4, getResources().getDrawable( R.drawable.contact_tab ), HomeScreen.class);