gpt4 book ai didi

java - Android TabLayout 崩溃

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

我正在自己创建一个 Android 应用程序(最低 sdk 版本 7 或 2.1 及更高版本)。一切都很顺利,直到我决定需要一个 TabLayout。我添加了一个新类,并让它扩展 TabActivity,但是当在 AVD 中启动应用程序时,它崩溃了,并在日志中指出存在未捕获的异常。并且无法启动该 Activity 。

ThermostatTabHost.java(注意,我没有添加包/导入以节省一些空间):

public class ThermostatTabHost extends TabActivity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.tabmain);

Resources res = getResources(); // Resource object to get Drawables
TabHost tabHost = getTabHost(); // The activity TabHost
TabHost.TabSpec spec; // Resusable TabSpec for each tab
Intent intent; // Reusable Intent for each tab

// Create an Intent to launch an Activity for the tab (to be reused)
intent = new Intent().setClass(this, ThermostatActivity.class);

// Initialize a TabSpec for each tab and add it to the TabHost
spec = tabHost.newTabSpec("Temperature").setIndicator("Program",
res.getDrawable(R.drawable.arrow_up))
.setContent(intent);
tabHost.addTab(spec);
}
}

ThermostatActvity 类当前仅包含一个 onCreate 函数,该函数调用 super.onCreate(savedInstance) 并使用 textview 设置布局。

tabmain.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="5dp">
<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="5dp" />
</LinearLayout>
</TabHost>

最后是 list 文件:

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

<uses-sdk android:minSdkVersion="7" />

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

这个例子直接来自android开发者网站(有一些小的改变),我也四处寻找类似的问题,但我想不出任何东西。

提前谢谢您。

最佳答案

将此“ThermostatActivity”添加到您的 list 文件中

关于java - Android TabLayout 崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9966314/

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