嵌套片段(选项卡中的多窗格)

时间:2014-09-22 18:58:57

标签: android android-fragments nested

我在片段中使用片段时遇到问题。第一个片段是一个选项卡视图,在一个选项卡中我希望有一个多窗格布局,如下所示:

enter image description here

错误是:

  

android.view.InflateException:二进制XML文件行#8:错误   膨胀类片段

标签片段(SettingsFragmentBox):

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

public class SettingsFragmentBox extends Fragment implements SettingsFragmentBoxList.OnItemSelectedListener{
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        View rootView = inflater.inflate(R.layout.fragment_settings_box, container, false);
        return rootView;
    }

    public void onBoxSelect(int id) {
        SettingsFragmentBoxDetail fragment = (SettingsFragmentBoxDetail) getFragmentManager().findFragmentById(R.id.box_detail);
        if (fragment != null && fragment.isInLayout()) {
            fragment.setText(id);
        } else {
            Intent intent = new Intent(getActivity(),SettingsActivityBoxDetail.class);
            intent.putExtra(SettingsActivityBoxDetail.EXTRA_ID, id);
            startActivity(intent);
        }
    }
}

xml(fragment_settings_box.xml):

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="horizontal" >

    <fragment
        android:id="@+id/box_list"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
        class="de.resper.e2cast.SettingsFragmentBoxList"
        tools:layout="@layout/fragment_settings_box_list">
    </fragment>

    <fragment
        android:id="@+id/box_detail"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="2"
        class="de.resper.e2cast.SettingsFragmentBoxDetail"
        tools:layout="@layout/fragment_settings_box_detail">
    </fragment>

</LinearLayout>

2 个答案:

答案 0 :(得分:0)

通常这是使用ACTIVITIES中的片段而不是其他片段中的片段来完成的。你确定你真的想要其他片段中的片段吗?

您所指的图片是显示此场景的方式(ACTIVITIES包含片段A或B)。

答案 1 :(得分:0)

您应该阅读http://developer.android.com/training/multiscreen/screensizes.html来处理不同的屏幕尺寸。有一个布局包含两个片段的例子。还可以通过阅读http://developer.android.com/training/multiscreen/adaptui.html

了解如何适应它