0

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

4

1 回答 1

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);
}

// ...
于 2014-07-24T05:52:31.753 回答