Android TabHost 示例

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/22464583/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-20 06:00:11  来源:igfitidea点击:

Android TabHost Example

androidandroid-tabhost

提问by c.mert

I did and run example. But i take error.

我做了并运行了示例。但我认为错误。

Error: java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.tabmenu/com.example.tabmenu.MainActivity: java.lang.IllegalArgumentException: you must specify a way to create the tab indicator.

mainActivity.java

主活动.java

@SuppressWarnings("deprecation")
public class MainActivity extends TabActivity {

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

        TabHost tabHost = (TabHost)findViewById(android.R.id.tabhost);

        TabSpec tab1 = tabHost.newTabSpec("First Tab");
        TabSpec tab2 = tabHost.newTabSpec("Second Tab");
        TabSpec tab3 = tabHost.newTabSpec("Third Tab");

        tab1.setIndicator("Tab1");
        tab1.setContent(new Intent(this,Tab1Activity.class));

        tab1.setIndicator("Tab2");
        tab1.setContent(new Intent(this,Tab2Activity.class));

        tab1.setIndicator("Tab3");
        tab1.setContent(new Intent(this,Tab3Activity.class));

        tabHost.addTab(tab1);
        tabHost.addTab(tab2);
        tabHost.addTab(tab3);
    }
}

androidManifest.xml

androidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.tabmenu"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="18" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >

        <activity 
            android:name="com.example.tabmenu.Tab1Activity"/>
        <activity
            android:name="com.example.tabmenu.Tab2Activity"/>
        <activity
            android:name="com.example.tabmenu.Tab3Activity"/>
        <activity
            android:name="com.example.tabmenu.MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
</manifest>

回答by Laura Pulido

try to change this segment:

尝试更改此段:

tab1.setIndicator("Tab1");
tab1.setContent(new Intent(this,Tab1Activity.class));

tab1.setIndicator("Tab2");
tab1.setContent(new Intent(this,Tab2Activity.class));

tab1.setIndicator("Tab3");
tab1.setContent(new Intent(this,Tab3Activity.class));

with the below one .... like this:

与下面的....像这样:

tab1.setIndicator("Tab1");
tab1.setContent(new Intent(this,Tab1Activity.class));

--> tab2.setIndicator("Tab2");
--> tab2.setContent(new Intent(this,Tab2Activity.class));

--> tab3.setIndicator("Tab3");
--> tab3.setContent(new Intent(this,Tab3Activity.class));

The error is because your are not using tab2 or tab3 and using tab1 repeatedly.

错误是因为您没有使用 tab2 或 tab3 并重复使用 tab1。

Hope this helps.

希望这可以帮助。

回答by slymnozdmrc

Modify your manifest like this (Bunu denermisin manifestinde)

像这样修改你的清单(Bunu denermisin manifestinde)

<activity
    android:name="com.example.tabmenu.MainActivity"
    android:label="@string/app_name" >
    <intent-filter>
        <action android:name="android.intent.action.MAIN" />

        <category android:name="android.intent.category.LAUNCHER" />
       </intent-filter>
    </activity>

     <activity
        android:name="com.example.tabmenu.Tab1Activity"
        android:label="@string/app_name"
        android:screenOrientation="landscape" >
        <intent-filter>
            <action android:name="com.example.tabmenu.Tab2Activity" />

            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </activity>
     <activity
        android:name="com.example.tabmenu.Tab2Activity"
        android:label="@string/app_name"
        android:screenOrientation="landscape" >
        <intent-filter>
            <action android:name="com.example.restaurant.Tab2Activity" />

            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </activity>
    <activity
        android:name="com.example.tabmenu.Tab3Activity"
        android:label="@string/app_name"
        android:screenOrientation="landscape" >
        <intent-filter>
            <action android:name="com.example.tabmenu.Tab3Activity" />

            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </activity>

回答by code_geek

Try this code...it may help

试试这个代码...它可能会有所帮助

public class Test extends TabActivity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_test);

    TabHost tabHost = getTabHost();
    TabHost.TabSpec spec;
    Intent intent;

    intent = new Intent().setClass(this, Tab1Activity.class);
    spec = tabHost.newTabSpec("First").setIndicator("First")
                  .setContent(intent);
    tabHost.addTab(spec);

    intent = new Intent().setClass(this, Tab2Activity.class);
    spec = tabHost.newTabSpec("Second").setIndicator("Second")
                  .setContent(intent);
    tabHost.addTab(spec);

    intent = new Intent().setClass(this, Tab3Activity.class);
    spec = tabHost.newTabSpec("Third").setIndicator("Third")
                  .setContent(intent);
    tabHost.addTab(spec);


}

Corresponding xml Page......

对应的xml页面......

<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
         android:layout_width="fill_parent"
         android:layout_height="fill_parent"
          android:id="@android:id/tabhost">

        <LinearLayout 
                android:id="@+id/LinearLayout01"
                android:orientation="vertical" 
                android:layout_height="fill_parent"
                android:layout_width="fill_parent">

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

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

        </LinearLayout>

</TabHost>

回答by Manoj Dembla

Change the given statement

更改给定的语句

TabHost tabHost = (TabHost)findViewById(android.R.id.tabhost);

to

TabHost tabHost = getTabHost();