使用标签的Android滑动视图向标签片段添加其他片段

时间:2015-03-19 12:19:50

标签: android android-layout android-fragments tabs

我让它在游泳中工作,这正是我所需要的:

http://developer.android.com/training/implementing-navigation/lateral.html

我的设置基本相同;带有两个嵌套选项卡(片段)的活动,如下所示:

public class StopActivity extends Activity
{
  ...
    public static class EnRouteFragment extends Fragment
    {
      ...
    }

    public static class OnSiteFragment extends Fragment
    {
      ...
    }
}

但是,现在我想在其中的选项卡/视图片段中添加一些可重用的UI片段。我对Android来说相对比较新,但是对于普通视图添加片段没有任何问题,否则。除了上面的设置,我创建了一个简单的片段:

public class DetailsFragment extends Fragment
{
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)
    {
    final View view = inflater.inflate(R.layout.fragment_details, container, false);

    return super.onCreateView(inflater, container, savedInstanceState);
    }
}

非常基本的布局:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true" >

        <TextView
            android:id="@+id/tripText"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Trip"
            android:textAppearance="?android:attr/textAppearanceLarge" />

        <Spinner
            android:id="@+id/tripSpinner"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1" />

        <Space android:layout_width="20dp" android:layout_height="match_parent" />

        <TextView
            android:id="@+id/stopNoText"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Stop #"
            android:textAppearance="?android:attr/textAppearanceLarge" />

        <Spinner
            android:id="@+id/stopNoSpinner"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1" />

    </LinearLayout>

</RelativeLayout>

...并将其添加到第一个标签/片段(&#34; EnRouteFragment&#34;相应的布局):

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context="com.me.mobile.StopActivity$PlaceholderFragment" >


    <fragment android:name="com.me.mobile.fragment.DetailsFragment"
              android:id="@+id/detailsFragment"
              android:layout_weight="1"
              android:layout_width="0dp"
              android:layout_height="match_parent" />

</RelativeLayout>

我得到以下异常:

  

java.lang.RuntimeException:无法启动活动   ComponentInfo {} com.me.mobile/com.me.mobile.StopActivity:   android.view.InflateException:二进制XML文件行#8:错误   膨胀类片段

     

...

     

引起:java.lang.IllegalStateException:Fragment   com.me.mobile.fragment.DetailsFragment没有创建视图。在   android.app.Activity.onCreateView(Activity.java:4809)at   android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:689)

任何线索都会非常感激!

1 个答案:

答案 0 :(得分:1)

如果您返回超类视图,为什么要在DetailsFragment中夸大您的视图?这没有任何意义。你应该跟随

public class DetailsFragment extends Fragment
{
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)
    {
    final View view = inflater.inflate(R.layout.fragment_details, container, false);

    return view;
    }
}