使用“简单”活动打开TabActivity

时间:2013-05-06 18:30:06

标签: android android-intent android-activity tabactivity android-tabactivity

当我尝试使用Activity的意图打开TabActivity时,我遇到了问题。

我的活动代码(ConnexionActivity),它不是标签中的活动:

        buttonConnexion.setOnClickListener(new OnClickListener(){
            public void onClick(View v) {
                     Intent intent = new Intent(ConnexionActivity.this, NeurokiffMobileActivity.class);
                     startActivity(intent);
            }           
        });

和TabActivity(NeurokiffMobileActivity):

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    this.getIntent();

    /* ******** Gestion Onglets ******** */
    res = getResources(); // Resource object to get Drawables
    tabHost = (TabHost) findViewById(android.R.id.tabhost);  // The activity TabHost


    /* *** Onglet "Evènements" *** */
    /* Intent responsable de lancer l'activité depuis l'onglet */
    intent = new Intent().setClass(this, EvenementActivity.class);
    bundleEnvoye.putString("id_user", idUser);
    intent.putExtras(bundleEnvoye);
    /* Crée un TabSpec et l'ajoute au TabHost */
    spec = tabHost.newTabSpec("evenement").setIndicator("Evenements",
                      res.getDrawable(R.drawable.ic_tab_evenement))
                   .setContent(intent);
    tabHost.addTab(spec);

    /* *** Onglet "Favoris" *** */
    intent = new Intent().setClass(this, FavorisActivity.class);
    bundleEnvoye.putString("id_user", idUser);
    intent.putExtras(bundleEnvoye);
    spec = tabHost.newTabSpec("favoris").setIndicator("Favoris",
                      res.getDrawable(R.drawable.ic_tab_favoris))
                  .setContent(intent);
    tabHost.addTab(spec);

    /* *** Onglet "Kiffs" *** */
    intent = new Intent().setClass(this, KiffsActivity.class);
    bundleEnvoye.putString("id_user", idUser);
    intent.putExtras(bundleEnvoye);
    spec = tabHost.newTabSpec("kiffs").setIndicator("Kiffs",
                      res.getDrawable(R.drawable.ic_tab_kiffs))
                  .setContent(intent);
    tabHost.addTab(spec);

    tabHost.setCurrentTab(0);

}

和此TabActivity的.xml:

<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@android:id/tabhost"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
    <LinearLayout
        android:orientation="vertical"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:padding="5dp">
        <FrameLayout
            android:id="@android:id/tabcontent"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_weight="1"
            android:padding="5dp" />
        <TabWidget
            android:id="@android:id/tabs"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content" 
            android:layout_weight="0"/>
    </LinearLayout>
</TabHost>

错误是对NeurokiffMobileActivity的onCreate方法的NullPointerException,并且应用程序关闭。 当我在意图中放置另一个“简单”活动而不是NeurokiffMobileActivity时,它可以工作。

有人可以帮帮我吗?由于TabActivity,这似乎是一个问题,但我不知道哪个......

提前致谢! ;)

1 个答案:

答案 0 :(得分:1)

以下是您的样本

showtab.xml

 <?xml version="1.0" encoding="utf-8"?>
 <TabHost xmlns:android="http://schemas.android.com/apk/res/android"
  android:id="@android:id/tabhost"
  android:layout_width="fill_parent"
 android:layout_height="fill_parent" >

<LinearLayout
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

    <TabWidget
        android:id="@android:id/tabs"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" >
    </TabWidget>

    <FrameLayout  
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:id="@android:id/tabcontent" >

   </FrameLayout>

  </LinearLayout>

</TabHost>

以下是AfterLoginTabActivity(要调用的tabactivity)的代码

public class AfterLoginTabActivity extends TabActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        // TODO Auto-generated method stub
        super.onCreate(savedInstanceState);
        setContentView(R.layout.afterloginview);
        @SuppressWarnings("deprecation")
        TabHost tabHost =getTabHost();

        Intent i = new Intent(AfterLoginTabActivity.this,ProfileClass.class);
        TabSpec profileSpec = tabHost.newTabSpec("profile").setIndicator("Profile").setContent(i);

        Intent j = new Intent(AfterLoginTabActivity.this,GroupClass.class);
        TabSpec groupSpec = tabHost.newTabSpec("group").setIndicator("group").setContent(j);

        tabHost.addTab(profileSpec);
        tabHost.addTab(groupSpec);

        tabHost.setCurrentTab(1);

    }
    }

我在button.setOnClickListener

中使用的代码
  if(msg == "success")
    {
        System.out.println("Inside button");
        try {
            Intent intent = new Intent(MainActivity.this,AfterLoginTabActivity.class);
              startActivity(intent);
              finish(); 
          } catch (Exception e) {
               // TODO: handle exception
              System.out.print("tHIS IS EXCCEPTION" + e);
        }

    }