如何为动态创建的每个选项卡创建活动?

时间:2010-03-23 11:35:36

标签: android tabwidget

我正在尝试动态创建和删除标签。通常应为TabSpec中创建的每个选项卡设置一个活动。但是动态创建选项卡时如何做到这一点?这里我使用框架布局来显示选项卡内容。如果我尝试通过设置选项卡内容来使用相同的活动,则文本会重叠。在这里,我必须从EditText视图中读取文本并将其设置为选项卡内容,并且每当我导航到该选项卡时都应显示该内容。

1 个答案:

答案 0 :(得分:5)

试试这个

protected TabHost tabs;

// ...

/**
 * Init tabs.
 */
private void initTabs() {
tabs = (TabHost) findViewById(R.id.tabhost);
tabs.setup();
tabs.setBackgroundResource(R.drawable.bg_midgray);

TabHost.TabSpec spec;

// Location info
txtTabInfo = new TextView(this);
txtTabInfo.setText("INFO");
txtTabInfo.setPadding(0, 0, 0, 0);
txtTabInfo.setTextSize(14);
txtTabInfo.setBackgroundResource(R.drawable.bg_tab_left_inactive_right_inactive);
txtTabInfo.setTextColor(Color.DKGRAY);
txtTabInfo.setGravity(Gravity.CENTER_HORIZONTAL|Gravity.TOP);
txtTabInfo.setHeight(39);
spec = tabs.newTabSpec("tabInfo");
spec.setContent(R.id.tabInfo);
spec.setIndicator(txtTabInfo);
tabs.addTab(spec);

// Maps
txtTabMap = new TextView(this);
txtTabMap.setText("MAP");
txtTabMap.setTextSize(14);
txtTabMap.setPadding(0, 0, 0, 0);
txtTabMap.setBackgroundResource(R.drawable.bg_tab_middle_inactive_right_active);
txtTabMap.setTextColor(Color.DKGRAY);
txtTabMap.setGravity(Gravity.CENTER_HORIZONTAL|Gravity.TOP);
txtTabMap.setHeight(39);
spec = tabs.newTabSpec("tabMap");
spec.setContent(R.id.tabMap);
spec.setIndicator(txtTabMap);
tabs.addTab(spec);

tabs.setCurrentTab(0);

tabs.setOnTabChangedListener(this);
}

// ...