gpt4 book ai didi

java - Tabhost 空指针异常

转载 作者:行者123 更新时间:2023-12-01 15:49:33 25 4
gpt4 key购买 nike

有人可以帮助我完成这个 TabHost 示例吗?我遇到的问题是,当我尝试运行应用程序时我遇到空指针异常。

这是代码,如果有人需要看一下。

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

/**
* TabHost will have Tabs
**/
TabHost tabHost = (TabHost)findViewById(android.R.id.tabhost);

/** TabSpec used to create a new tab.
* By using TabSpec only we can able to setContent to the tab.
* By using TabSpec setIndicator() we can set name to tab.
**/
TabHost.TabSpec spec1, spec2;
spec1 = tabHost.newTabSpec("tab_id_1").setIndicator("Tab One").setContent(new Intent().setClass(this, FirstTab.class));
spec2 = tabHost.newTabSpec("tab_id_2").setIndicator("Tab Two").setContent(new Intent().setClass(this, SecondTab.class));

/**
* create intent of each tab pressed
**/
//Intent intent1 = new Intent().setClass(this, FirstTab.class);
//Intent intent2 = new Intent().setClass(this, SecondTab.class);

/**
* add the created tab to the tab host for display
**/
// I am getting error at the following line
tabHost.addTab(spec1);
tabHost.addTab(spec2);
}
}

任何人以任何方式提供帮助或为我指明方向,我将不胜感激。问候设拉子

编辑--这是我收到的错误的 LogCat View

06-18 23:18:30.547: ERROR/AndroidRuntime(1404): FATAL EXCEPTION: main
06-18 23:18:30.547: ERROR/AndroidRuntime(1404): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.moonlight.tabbarexample/com.moonlight.tabbarexample.TabBarExample}: java.lang.NullPointerException
06-18 23:18:30.547: ERROR/AndroidRuntime(1404): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1816)
06-18 23:18:30.547: ERROR/AndroidRuntime(1404): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1837)
06-18 23:18:30.547: ERROR/AndroidRuntime(1404): at android.app.ActivityThread.access$1500(ActivityThread.java:132)
06-18 23:18:30.547: ERROR/AndroidRuntime(1404): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1033)
06-18 23:18:30.547: ERROR/AndroidRuntime(1404): at android.os.Handler.dispatchMessage(Handler.java:99)
06-18 23:18:30.547: ERROR/AndroidRuntime(1404): at android.os.Looper.loop(Looper.java:143)
06-18 23:18:30.547: ERROR/AndroidRuntime(1404): at android.app.ActivityThread.main(ActivityThread.java:4196)
06-18 23:18:30.547: ERROR/AndroidRuntime(1404): at java.lang.reflect.Method.invokeNative(Native Method)
06-18 23:18:30.547: ERROR/AndroidRuntime(1404): at java.lang.reflect.Method.invoke(Method.java:507)
06-18 23:18:30.547: ERROR/AndroidRuntime(1404): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:839)
06-18 23:18:30.547: ERROR/AndroidRuntime(1404): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:597)
06-18 23:18:30.547: ERROR/AndroidRuntime(1404): at dalvik.system.NativeStart.main(Native Method)
06-18 23:18:30.547: ERROR/AndroidRuntime(1404): Caused by: java.lang.NullPointerException
06-18 23:18:30.547: ERROR/AndroidRuntime(1404): at android.widget.TabHost$ViewIdContentStrategy.<init>(TabHost.java:591)
06-18 23:18:30.547: ERROR/AndroidRuntime(1404): at android.widget.TabHost$ViewIdContentStrategy.<init>(TabHost.java:586)
06-18 23:18:30.547: ERROR/AndroidRuntime(1404): at android.widget.TabHost$TabSpec.setContent(TabHost.java:441)
06-18 23:18:30.547: ERROR/AndroidRuntime(1404): at com.moonlight.tabbarexample.TabBarExample.onCreate(TabBarExample.java:26)
06-18 23:18:30.547: ERROR/AndroidRuntime(1404): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1093)
06-18 23:18:30.547: ERROR/AndroidRuntime(1404): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1780)
06-18 23:18:30.547: ERROR/AndroidRuntime(1404): ... 11 more
06-18 23:20:06.984: ERROR/SettingsAppWidhetProvider(14282): level1 = 100.0

谢谢设拉子

编辑2--这是 main.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="5dip">
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="5dip" />

</LinearLayout>
</TabHost>

这是 TabbarExample list

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.moonlight.tabbarexample"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="7" />

<application android:icon="@drawable/icon" android:label="@string/app_name">

<activity android:name=".TabBarExample"
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>

这是 Firsttab.java

package com.moonlight.tabbarexample;

import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;

public class FirstTab extends Activity{
public void onCreate ( Bundle savedInstanceState){
super.onCreate(savedInstanceState);
/* First Tab Content */
TextView textView = new TextView(this);
textView.setText("First Tab");
setContentView(textView);
}

}

最后一个SeconTab.java

package com.moonlight.tabbarexample;

import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;

public class SecondTab extends Activity{
public void onCreate ( Bundle savedInstanceState){
super.onCreate(savedInstanceState);
/* First Tab Content */
TextView textView = new TextView(this);
textView.setText("Second Tab");
setContentView(textView);
}

}

谢谢大家,请大家帮帮忙,我正在焦急地等待。问候。设拉子

编辑3 ---

我已将以下行添加到我的 list 文件中

    <activity android:name=".FirstTab"/>
<activity android:name=".SecondTab"/>

但我仍然遇到同样的错误:(

这是我的主要 Activity onCreate methodid 中的行,我在其中收到此错误

  /**
* add the created tab to the tab host for display
**/
tabHost.addTab(spec1);
tabHost.addTab(spec2);

谢谢设拉子

最佳答案

首先,定义 list 中两个选项卡的 Activity :

<?xml version="1.0" encoding="utf-8"?> 
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.moonlight.tabbarexample"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="7" />

<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".FirstTab" />
<activity android:name=".SecondTab" />
<activity android:name=".TabBarExample"
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>

最后,改变

public class TabBarExample extends Activity {

public class TabBarExample extends TabActivity {

选项卡 Activity 的类声明就很好。

关于java - Tabhost 空指针异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6396037/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com