gpt4 book ai didi

java - Android 应用程序在 setContentView 上崩溃

转载 作者:行者123 更新时间:2023-12-02 00:36:13 25 4
gpt4 key购买 nike

我是 Android 开发的新手,代码在 setContentView(R.layout.main) 处崩溃。我不知道为什么。我已经尝试过标准的清理和构建并重新启动 Eclipse。

主要代码:

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

}

Main.xml 代码:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent">

<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">
<View android:layout_width="fill_parent" android:layout_height="0.5dip"
android:background="#000" />
<TabWidget android:id="@android:id/tabs"
android:layout_width="fill_parent" android:layout_height="wrap_content"
android:layout_marginLeft="0dip" android:layout_marginRight="0dip" />
<View android:layout_width="fill_parent" android:layout_height="2dip"
android:background="#696969" />
<View android:layout_width="fill_parent" android:layout_height="2dip"
android:background="#000" />
<FrameLayout android:id="@android:id/tabcontent"
android:layout_width="fill_parent" android:layout_height="fill_parent" />
</LinearLayout>
</TabHost>

</LinearLayout>

最佳答案

从 TabHost 中删除 xmlns。布局 xml 文件中只能有一个 xmlns。

<TabHost
android:id="@android:id/tabhost" android:layout_width="fill_parent"
android:layout_height="fill_parent">

关于java - Android 应用程序在 setContentView 上崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7761896/

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