TabView
はListActivity
と表示されますが、リストアイテムの1つをクリックするたびに新しいアクティビティが発生し、TabViewは完全に消滅します。Android:新しいアクティビティをタブ内に残す
私が望むのは、リストのアイテムの1つをクリックすると、新しいアクティビティが表示され、タブ内に残ります。
誰でも私のコードを改善できますか?ここで
は、カスタマイズされたTabView
のための私のコードです:
super.onCreate(savedInstanceState);
// construct the tabhost
setContentView(R.layout.project_tab);
setupTabHost();
setupTabL(new TextView(this), "Alle", (ProjectsList.class));
setupTab(new TextView(this), "Kategorien", (CategoryList.class));
setupTabR(new TextView(this), "Favorites", (ProjectsList.class));
final Button refresh = (Button) findViewById(R.id.btn_project_refresh);
refresh.setOnClickListener(refresh_listener);
}
private void setupTab(final View view, final String tag, final Class<?> context) {
View tabview = createTabView(mTabHost.getContext(), tag);
TabSpec ts1 = mTabHost.newTabSpec("tab1");
ts1.setIndicator(tabview);
mTabHost.addTab(ts1);
}
private static View createTabView(final Context context, final String text) {
View view = LayoutInflater.from(context).inflate(R.layout.inner_tab_m_bg, null);
TextView tv = (TextView) view.findViewById(R.id.tabsText);
tv.setText(text);
return view;
}
、これはListActivity
のコードからonListItemClick
抜粋です:あなたは活動グループが探しているものを
protected void onListItemClick(ListView l, View v, int position, long id) {
super.onListItemClick(l, v, position, id);
Object o = this.getListAdapter().getItem(position);
String choice = o.toString();
if (choice .equals("Entwicklungshilfe")) {
Intent i = new Intent(CategoryList.this, SubCategoryList.class);
i.putExtra("category","'%Entwicklungshilfe%'");
startActivityForResult(i,0);