package com.hubmeka.twitter;


import android.app.Activity;
import android.app.TabActivity;
import android.os.Bundle;
import android.widget.TabHost;

public class Index extends TabActivity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        
        TabHost th = getTabHost();
        
        th.addTab(
    	        th.newTabSpec("TAB_TEST1")
    	        .setIndicator("twitter list")
    	        .setContent(R.id.content01)
            );
        
        th.addTab(
    	        th.newTabSpec("TAB_TEST2")
    	        .setIndicator("...")
    	        .setContent(R.id.content02)
            );
        
        th.addTab(
    	        th.newTabSpec("TAB_TEST3")
    	        .setIndicator("...")
    	        .setContent(R.id.content03)
            );
    }
}