我有一个直接来自教程的布局 XML 文件:
布局/partnertrial_summary.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>
在我的Activity
课堂上,我尝试使用以下代码,但如果失败:
mTabHost = findViewById(R.layout.partnertrial_summary.tabhost);
失败了。但是,它验证了R.layout.partnertrial_summary
绿色中的部分,但是当我尝试自动弹出它的成员时,partnertrial_summary
它什么也没产生。
我认为 XML 是有效的,因为它直接来自 Android,所以这是我做错的事情。请注意, myActivity
不是 a TabActivity
,但我认为可以使用常规的并添加 a TabHost
,实现适当的侦听器。如果我的想法是错误的,请纠正我。