Android:更改片段中的layout.xml

时间:2012-07-26 16:57:10

标签: android android-fragments fragment

我有两个碎片并排。当我对左侧片段执行操作时,我希望更改正确的片段。只要右片段的layout.xml没有更改,它就可以工作。我想要的是定义一些布局,例如layout1.xml,layout2.xml等依赖于右侧左侧的内容,将显示其中一个布局。我发现http://developer.android.com/guide/components/fragments.html#Transactions但我不确定这是否是正确的方法。如果不是什么是正确的方法?如果是的话我会挣扎

transaction.replace(R.id.fragment_container, newFragment);

我需要告诉newFragment它现在已经例如layout27.xml。我怎么能这样做?

修改

我的main.xml看起来像这样

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


<fragment class="com.whatever.OverviewFragment"
    android:id="@+id/list"
    android:name="com.whatever.OverviewFragment"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_weight="1" />

    <fragment class="com.whatever.DetailFragment"
    android:id="@+id/listB"
    android:name="com.whatever.DetailFragment"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_weight="1" />

</LinearLayout>

应该在用户操作上交换第二个片段,对于listB我可以说5个不同的layout.xml文件。

DetailFragment.java看起来基本上是这样的:

public  class DetailFragment extends Fragment {
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, 
            Bundle savedInstanceState) {
        return inflater.inflate(R.layout.details, container, false);
    }

    //this is called when I do an action in the other fragment
    public void setScreen(int id) {
        //This fragment is one of the 5 possible fragments
        DetailFragment2 newF = new DetailFragment2();
        FragmentTransaction transaction = getFragmentManager().beginTransaction();
        transaction.replace(R.id.listB, newF);
        transaction.addToBackStack(null);
        transaction.commit();
    }
}

2 个答案:

答案 0 :(得分:2)

我使用片段参数做类似的事情来传递选择哪个布局

片段1(对照)

Bundle data = new Bundle();
data.putInt("LayoutChoice",i); // i chooses which layout to use on fragment 2
Fragment f = new Fragment2();
f.setArguments(data);
fragmentTransaction.replace(R.id.fcontainer, f);

片段2(显示)

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

    switch( getArguments().getInt("LayoutChoice") ) {
    case 1:
        rootView = inflater.inflate(R.layout.layout1, container, false);
        break;
    case 2:
        rootView = inflater.inflate(R.layout.layout2, container, false);
        break;
    }

答案 1 :(得分:-1)

所以你可以做的是使用片段事务管理器和myabe某种事件(让我们假设一个按钮点击事件)你改变你希望片段看起来的方式。

对于我的代码,我有一个标签点击,其中加载了一个新的片段,所以我做的是用新的片段替换旧的片段。

        RSSFragment rssfrag = new RSSFragment();
        FragmentManager fmi = getSupportFragmentManager();
        FragmentTransaction ftu = fmi.beginTransaction();
        ftu.replace(R.id.frame_fragment, rssfrag).addToBackStack(null).commit();

RSSFragment是一个我正在调用的类,然后使用FragmentManager和FragmentTransaction来替换片段。 因此,您可以根据需要为任何片段充气