0

我有一个直接来自教程的布局 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,实现适当的侦听器。如果我的想法是错误的,请纠正我。

4

1 回答 1

1
mTabHost = findViewById(R.layout.partnertrial_summary.tabhost);

替换上面的如下

LayoutInflater inflater = (LayoutInflater)getApplicationContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View view = inflater.inflate(R.layout.partnertrial_summary,null);
 mTabHost = (TabHost)view.findViewById(R.id.tabhost);

布局可以膨胀但无法使用 findViewById() 找到

于 2012-04-23T17:59:35.773 回答