• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2008 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 package com.example.android.apis.view;
18 
19 import android.app.TabActivity;
20 import android.os.Bundle;
21 import android.widget.TabHost;
22 import android.content.Intent;
23 
24 /**
25  * An example of tab content that launches an activity via {@link android.widget.TabHost.TabSpec#setContent(android.content.Intent)}
26  */
27 public class Tabs3 extends TabActivity {
28 
29     @Override
onCreate(Bundle savedInstanceState)30     protected void onCreate(Bundle savedInstanceState) {
31         super.onCreate(savedInstanceState);
32 
33         final TabHost tabHost = getTabHost();
34 
35         tabHost.addTab(tabHost.newTabSpec("tab1")
36                 .setIndicator("list")
37                 .setContent(new Intent(this, List1.class)));
38 
39         tabHost.addTab(tabHost.newTabSpec("tab2")
40                 .setIndicator("photo list")
41                 .setContent(new Intent(this, List8.class)));
42 
43         // This tab sets the intent flag so that it is recreated each time
44         // the tab is clicked.
45         tabHost.addTab(tabHost.newTabSpec("tab3")
46                 .setIndicator("destroy")
47                 .setContent(new Intent(this, Controls1.class)
48                         .addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP)));
49     }
50 }
51