gpt4 book ai didi

java - Android 示例中的 tabhost 在模拟器中强制关闭

转载 作者:行者123 更新时间:2023-11-30 04:17:39 33 4
gpt4 key购买 nike

我写了一个简单的tabhost例子如下

<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >

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

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

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

<LinearLayout
android:id="@+id/tab1"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >

<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />

<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />

<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Large Text"
android:textAppearance="?android:attr/textAppearanceLarge" />
</LinearLayout>

<LinearLayout
android:id="@+id/tab2"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >

<Button
android:id="@+id/button3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />
</LinearLayout>

<LinearLayout
android:id="@+id/tab3"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >

<TextView
android:id="@+id/tv2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Large Text"
android:textAppearance="?android:attr/textAppearanceLarge" />
</LinearLayout>
</FrameLayout>
</LinearLayout>

</TabHost>

这是在 main.xml 中所以我将 setcontentview 设置为 main.xml

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

它在 android 4.0 模拟器中运行良好,但是当我在 android 2.1 模拟器上运行它时,它强制关闭并在 ddms 中显示这些日志

03-16 17:19:08.295: E/AndroidRuntime(1579):     at android.view.ViewRoot.handleMessage(ViewRoot.java:1819)
03-16 17:39:27.016: E/AndroidRuntime(2092): Uncaught handler: thread main exiting due to uncaught exception
03-16 17:39:27.036: E/AndroidRuntime(2092): java.lang.RuntimeException: Unable to start activity ComponentInfo{banana.com/banana.com.AndroidtabhostActivity}: java.lang.RuntimeException: Your content must have a TabHost whose id attribute is 'android.R.id.tabhost'
03-16 17:39:27.036: E/AndroidRuntime(2092): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2496)
03-16 17:39:27.036: E/AndroidRuntime(2092): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2512)
03-16 17:39:27.036: E/AndroidRuntime(2092): at android.app.ActivityThread.access$2200(ActivityThread.java:119)
03-16 17:39:27.036: E/AndroidRuntime(2092): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1863)
03-16 17:39:27.036: E/AndroidRuntime(2092): at android.os.Handler.dispatchMessage(Handler.java:99)
03-16 17:39:27.036: E/AndroidRuntime(2092): at android.os.Looper.loop(Looper.java:123)
03-16 17:39:27.036: E/AndroidRuntime(2092): at android.app.ActivityThread.main(ActivityThread.java:4363)
03-16 17:39:27.036: E/AndroidRuntime(2092): at java.lang.reflect.Method.invokeNative(Native Method)
03-16 17:39:27.036: E/AndroidRuntime(2092): at java.lang.reflect.Method.invoke(Method.java:521)
03-16 17:39:27.036: E/AndroidRuntime(2092): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:860)
03-16 17:39:27.036: E/AndroidRuntime(2092): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:618)
03-16 17:39:27.036: E/AndroidRuntime(2092): at dalvik.system.NativeStart.main(Native Method)
03-16 17:39:27.036: E/AndroidRuntime(2092): Caused by: java.lang.RuntimeException: Your content must have a TabHost whose id attribute is 'android.R.id.tabhost'
03-16 17:39:27.036: E/AndroidRuntime(2092): at android.app.TabActivity.onContentChanged(TabActivity.java:105)
03-16 17:39:27.036: E/AndroidRuntime(2092): at com.android.internal.policy.impl.PhoneWindow.setContentView(PhoneWindow.java:201)
03-16 17:39:27.036: E/AndroidRuntime(2092): at android.app.Activity.setContentView(Activity.java:1622)
03-16 17:39:27.036: E/AndroidRuntime(2092): at banana.com.AndroidtabhostActivity.onCreate(AndroidtabhostActivity.java:11)
03-16 17:39:27.036: E/AndroidRuntime(2092): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)
03-16 17:39:27.036: E/AndroidRuntime(2092): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2459)
03-16 17:39:27.036: E/AndroidRuntime(2092): ... 11 more

为什么会这样???谁能解释一下

按照 samir 所说的进行更改后,我仍然遇到异常

03-16 17:50:03.925: E/AndroidRuntime(2372): Uncaught handler: thread main exiting due to uncaught exception
03-16 17:50:03.936: E/AndroidRuntime(2372): java.lang.NullPointerException
03-16 17:50:03.936: E/AndroidRuntime(2372): at android.widget.TabHost.dispatchWindowFocusChanged(TabHost.java:295)
03-16 17:50:03.936: E/AndroidRuntime(2372): at android.view.ViewGroup.dispatchWindowFocusChanged(ViewGroup.java:661)
03-16 17:50:03.936: E/AndroidRuntime(2372): at android.view.ViewGroup.dispatchWindowFocusChanged(ViewGroup.java:661)
03-16 17:50:03.936: E/AndroidRuntime(2372): at android.view.ViewRoot.handleMessage(ViewRoot.java:1819)
03-16 17:50:03.936: E/AndroidRuntime(2372): at android.os.Handler.dispatchMessage(Handler.java:99)
03-16 17:50:03.936: E/AndroidRuntime(2372): at android.os.Looper.loop(Looper.java:123)
03-16 17:50:03.936: E/AndroidRuntime(2372): at android.app.ActivityThread.main(ActivityThread.java:4363)
03-16 17:50:03.936: E/AndroidRuntime(2372): at java.lang.reflect.Method.invokeNative(Native Method)
03-16 17:50:03.936: E/AndroidRuntime(2372): at java.lang.reflect.Method.invoke(Method.java:521)
03-16 17:50:03.936: E/AndroidRuntime(2372): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:860)
03-16 17:50:03.936: E/AndroidRuntime(2372): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:618)
03-16 17:50:03.936: E/AndroidRuntime(2372): at dalvik.system.NativeStart.main(Native Method)

最佳答案

Android 的 Tabhost 有问题。请查看我的blog有关创建选项卡的更多信息

搜索tabhost可以立即得到相应的信息。

关于java - Android 示例中的 tabhost 在模拟器中强制关闭,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9736863/

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