エミュレーターで次のエラーが発生し続けます。
これをチュートリアルからコピーしましたが、まだ機能しません。アプリを実行すると、「残念ながら、lastRide が停止しました」と表示されます。何か案は?
ただし、コンソールにエラーは表示されません。
main.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));
}