我在模拟器上不断收到此错误:
我从教程中复制了这个,但仍然无法正常工作。当我运行我的应用程序时,它说 - 不幸的是,lastRide 已停止。有任何想法吗?
但是控制台中没有给出错误。
主要的.xml
<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
tools:ignore="HardcodedText" >
<LinearLayout
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" />
<LinearLayout
android:id="@+id/fr"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<CheckBox android:text="rawted" />
<CheckBox android:text="rawted" />
<CheckBox android:text="rawted" />
<CheckBox android:text="rawted" />
</LinearLayout>
</LinearLayout>
</TabHost>
lastRideActivity.java
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
TabHost mTabHost = getTabHost();
mTabHost.addTab(mTabHost.newTabSpec("tab_test1").setIndicator("TAB 1")
.setContent(R.id.fr));
}