gpt4 book ai didi

java - Android 应用程序崩溃,这是代码

转载 作者:行者123 更新时间:2023-11-30 03:06:36 25 4
gpt4 key购买 nike

我做了所有需要的事情,比如在 list 中注册。但是应用程序在启动时崩溃并出现常见的 android 错误。感谢任何帮助。

import android.R;
import android.app.Activity;
import android.os.Bundle;
import android.widget.TabHost;
import android.widget.TabHost.TabSpec;

public class Tabs extends Activity {

@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(com.example.R.layout.tabs);
TabHost th = (TabHost) findViewById(android.R.id.tabhost);
th.setup();
TabSpec specs = th.newTabSpec("tag1");
specs.setContent(com.example.R.id.tab1);
specs.setIndicator("Stop Watch");
th.addTab(specs);


specs = th.newTabSpec("tag2");
specs.setContent(com.example.R.id.tab2);
specs.setIndicator("Tab 2");
th.addTab(specs);

specs = th.newTabSpec("tag3");
specs.setContent(com.example.R.id.tab3);
specs.setIndicator("Add a Tab");
th.addTab(specs);
}


}

这是 XML 部分。 xml 代码从这里开始。请也检查一下。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

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

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

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

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

<LinearLayout
android:id="@+id/tab1"
android:layout_width="match_parent"
android:layout_height="match_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="TextView" />
</LinearLayout>

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

<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TextView" />
</LinearLayout>

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

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

</LinearLayout>

请帮忙。

最佳答案

要么改变

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

 TabHost th = (TabHost) findViewById(com.example.R.id.tabhost);

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

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

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

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