我是Android新手,我一直在尝试在Android开发者网站上重用关于开发TabActivity App的教程,但不幸的是,它从未奏效,即使我构建它的方式与描述完全相同... 使用调试器似乎问题来自主要布局。
-> setContentView(R.layout.main); //After this line the app stops.
这是我的main.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>
如果有人有同样的问题,或者有人有一些建议,欢迎他们:)
坦克很多!
兰迪