我使用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);
}
}
答案 0 :(得分:0)
您应该在后台线程(异步任务)或服务中运行您的进程。只有Tab活动中的结果视图。 İf选项卡活动开始,您应该使用后台线程填充数据..