TabView.java :  » UnTagged » project-cooking-hci » HCI » src » Android Open Source

Android Open Source » UnTagged » project cooking hci 
project cooking hci » HCI » src » TabView.java
package HCI.src;



import HCI.src.R;
import android.app.TabActivity;
import android.content.Intent;
import android.content.res.Resources;
import android.os.Bundle;
import android.widget.TabHost;

public class TabView extends TabActivity{
   public void onCreate(Bundle savedInstanceState) {
          super.onCreate(savedInstanceState);
          setContentView(R.layout.main);
          
          Resources res = getResources(); // Resource object to get Drawables
          TabHost tabHost = getTabHost();  // 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, Home.class);

          // Initialize a TabSpec for each tab and add it to the TabHost
          spec = tabHost.newTabSpec("home").setIndicator("home",
                            res.getDrawable(R.drawable.ic_tab_home))
                        .setContent(intent);
          tabHost.addTab(spec);
          
       // Create an Intent to launch an Activity for the tab (to be reused)
          intent = new Intent().setClass(this, Browse.class);

          // Initialize a TabSpec for each tab and add it to the TabHost
          spec = tabHost.newTabSpec("browse").setIndicator("browse",
                            res.getDrawable(R.drawable.ic_tab_browse))
                        .setContent(intent);
          tabHost.addTab(spec);
          
       // Create an Intent to launch an Activity for the tab (to be reused)
          intent = new Intent().setClass(this, searching.class);

          // Initialize a TabSpec for each tab and add it to the TabHost
          spec = tabHost.newTabSpec("search").setIndicator("search",
                            res.getDrawable(R.drawable.ic_tab_search))
                        .setContent(intent);
          tabHost.addTab(spec);
          
          tabHost.setCurrentTab(0);
   }

}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.