我现在一直在寻找答案并尝试不同的解决方案。我正在尝试设计一个带有嵌套片段的Android应用程序,其中一个片段包含Tabs。当我尝试将TabSpec的内容设置为另一个片段时,会出现问题。好吧,首先我将MainActivity分成两个由功能区划分的片段,这不是问题的一部分:
<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>
关注发生的问题,我将发布顶级片段的代码。 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中的Tab-appearance时,我收到错误,当我尝试设置内容时找不到View。
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?
但这些解决方案并没有给我很多帮助。你真的可以帮助我!
最好的问候,丹尼斯。
答案 0 :(得分:0)
好的,我终于在这里找到了答案:http://developer.android.com/reference/android/support/v4/app/FragmentTabHost.html
在我的ArticleUser.class中返回一个新的FragmentTabHost而不是Id找到的View解决了我的问题。