0

私は現在、ある時点で立ち往生しています.actionbar(NAVIGATION_MODE_TABS)をフラグメントで使用している場合.フラグメントを、すべてのビューの読み込みとすべてを処理するアクティビティにしたい.現在、フラグメントクラスはフラグメントを拡張します..そうですか?しかし、私はしたいアクティビティを拡張してから oncreate を呼び出すようなものです。

助けてください。

enter code here

final TabHost tabHost = getTabHost();//(TabHost) findViewById(R.id.tabhost);//  // The activity TabHost
    TabHost.TabSpec spec;  // Resusable TabSpec for each tab
    Intent intent;  // Reusable Intent for each tab
    // Create an Intent to launch an Activity for the tab (to be reused)
    intent = new Intent().setClass(this, X.class);

    // Initialize a TabSpec for each tab and add it to the TabHost
    spec = tabHost.newTabSpec("jbn jb n").setIndicator("gjngjmb ",
                      res.getDrawable(R.drawable.home))
                  .setContent(intent);
    tabHost.addTab(spec);

    // Do the same for the other tabs
    intent = new Intent().setClass(this, MyCoursesActivity.class);
    spec = tabHost.newTabSpec("my_course").setIndicator("My Courses",
                      res.getDrawable(R.drawable.courses))
                  .setContent(intent);
    tabHost.addTab(spec);

    intent = new Intent().setClass(this, DashboardActivity.class);
    intent.putExtra("course_title", "Aal is well!!!");
    spec = tabHost.newTabSpec("dashboard").setIndicator("Dashboard",
                      res.getDrawable(R.drawable.dashboard))
                  .setContent(intent);
    tabHost.addTab(spec);

enter code here

このコードは tabhost を使用しています Android 4.0 のフラグマントでアクションバーを使用して同じことをしたいです

4

1 に答える 1

0

onCreateView()Fragmentで使用できgetActivity().、直接アクセスすることもできますActivity

于 2012-12-06T08:34:51.627 に答える