0

我使用了 TabActivity 我有五个选项卡,在每个活动中都有数据库连接我想要如果我将一个选项卡移动到另一个选项卡活动不应该完成,所以如果我回来所以活动 onCreate() 方法不应该再次调用

我的代码如下

       public class TabSample extends TabActivity {
/** Called when the activity is first created. */

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.tab_main);
    setTabs();

}

private void setTabs() {
    addTab("", R.drawable.a, A.class);
    addTab("", R.drawable.b, B.class);
    addTab("", R.drawable.c, C.class);
    addTab("", R.drawable.d, D.class);
    addTab("", R.drawable.e, E.class);
}



private void addTab(String labelId, int drawableId, Class<?> c) {
    TabHost tabHost = getTabHost();
    Intent intent = new Intent(this, c);
    TabHost.TabSpec spec = tabHost.newTabSpec("tab" + labelId);

    View tabIndicator = LayoutInflater.from(this).inflate(
            R.layout.tab_indicator, getTabWidget(), false);
    TextView title = (TextView) tabIndicator.findViewById(R.id.title);
    title.setText(labelId);
    ImageView icon = (ImageView) tabIndicator.findViewById(R.id.icon);
    icon.setImageResource(drawableId);

    spec.setIndicator(tabIndicator);
    spec.setContent(intent);
    tabHost.addTab(spec);

}

}

4

1 回答 1

0

您应该在后台线程(异步任务)服务中运行您的进程。仅在选项卡活动中产生视图。如果选项卡活动开始,您应该使用后台线程填充数据..

于 2013-07-27T14:15:05.453 回答