Android TabHost.TabSpec.setContent(...) 在嵌套片段中 "could not find View with Id"

Android TabHost.TabSpec.setContent(...) in nested Fragments "could not find View with Id"

我一直在寻找答案并尝试不同的解决方案,这让我筋疲力尽。我正在尝试设计一个 android 具有嵌套片段的应用程序,其中一个片段包含选项卡。当我尝试将 TabSpec 的内容设置为另一个 Fragment 时出现问题。嗯,首先我把MainActivity分成了两个Fragments,按功能区划分,这不是问题的一部分:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"  android:layout_width="match_parent"
android:orientation="vertical"
android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".ScientificJournal"
android:weightSum="5">


<fragment
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:name="ba.uni.dego.scientificjournal.ArticleUser"
    android:id="@+id/workspace_user"
    tools:layout="@layout/article_user_fragment"
    android:layout_weight="2" />
<LinearLayout
    android:orientation="horizontal"
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="1"
    android:focusableInTouchMode="false">

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="New Button"
        android:id="@+id/b_test1" />

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="New Button"
        android:id="@+id/button3" />

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="New Button"
        android:id="@+id/button4" />

</LinearLayout>

<fragment
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:name="ba.uni.dego.scientificjournal.ArticleEditor"
    android:id="@+id/workspace_editor"
    tools:layout="@layout/article_editor_fragment"
    android:layout_weight="2" />
</LinearLayout>

针对发生的问题,我将 post 顶部片段的代码。 ArticleUser-Class 看起来像这样:

package ba.uni.dego.scientificjournal;

import android.app.Fragment;
import android.content.Intent;
import android.os.Bundle;
import android.support.v4.app.FragmentActivity;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TabHost;
import android.widget.TextView;

public class ArticleUser extends Fragment{


@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
                         Bundle savedInstanceState) {
    return inflater.inflate(R.layout.article_user_fragment,
            container, false);
}
}

在 article_user_fragment.xml 内部,我正在定义一个 TabHost,它应该包含另外两个片段:

<?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:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@android:id/tabhost">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">

        <TabWidget
            android:id="@android:id/tabs"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:showDividers="middle">
        </TabWidget>

        <FrameLayout
            android:id="@android:id/tabcontent"
            android:layout_width="match_parent"
            android:layout_height="match_parent">

            <fragment
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:name="ba.uni.dego.scientificjournal.ArticleUserRead"
                android:id="@+id/f_user_read"
                android:layout_gravity="center"
                tools:layout="@layout/article_user_read_fragment"
                android:tag="Read" />

            <fragment
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:name="ba.uni.dego.scientificjournal.ArticleUserArchive"
                android:id="@+id/f_user_archive"
                android:layout_gravity="center"
                tools:layout="@layout/article_user_archive_fragment"
                android:tag="Archive" />
        </FrameLayout>
    </LinearLayout>
</TabHost>

到目前为止,我在执行我的应用程序时没有遇到任何问题。现在,当我尝试在 ArticleUser.class 中编辑选项卡外观时,我收到错误消息,当我尝试设置内容时无法找到视图。

package ba.uni.dego.scientificjournal;

import android.app.Fragment;
import android.content.Intent;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TabHost;
import android.widget.TextView;

public class ArticleUser extends Fragment{


@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
                         Bundle savedInstanceState) {

    View view = inflater.inflate(R.layout.article_user_fragment,
            container, false);

    TabHost th =(TabHost) view.findViewById(android.R.id.tabhost);
    TabHost.TabSpec readerSpec = th.newTabSpec("Read");
    readerSpec.setIndicator("Read");
    readerSpec.setContent(R.id.subfragment_read);
    th.addTab(readerSpec);

    return view;
}
}

错误是: 原因:java.lang.RuntimeException:无法创建选项卡内容,因为找不到 ID 为 2131492950

的视图

我已经找到了:Android Tab Views - could not create tab content because could not find view with id

还有这个:Why do I get an error while trying to set the content of a tabspec in android?

但是这些解决方案对我帮助不大。你真的会在这里帮助我!

此致,丹尼斯。

好的,我终于在这里找到了答案:http://developer.android.com/reference/android/support/v4/app/FragmentTabHost.html

在我的 ArticleUser.class 中返回一个新的 FragmentTabHost 而不是 Id 找到的视图解决了我的问题。