20

断片に頭を巻くのに少し時間がかかりましたが、断片についてはこれが最後の質問になるはずです。私はこれが通過するコードの巨大な混乱であることを知っています。しかし、フラグメントで基本的なルールを破っていないことを確認するために、助けていただければ幸いです。

すべてのコードを投稿して、誰かが「コードを調べて」、大きな間違いを犯していないかどうか、またはもっと簡単なルートをたどるべきかどうかを確認します。最後に、タイトルに記載されているように、私のフラグメントは置き換えられていません...それは上に追加されます。

ファイルツリー:

ここに画像の説明を入力してください

MainActivity.java:

package com.example.learn.fragments;

import android.app.Activity;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentActivity;
import android.support.v4.app.FragmentManager;
import android.support.v4.app.FragmentTransaction;
import android.view.LayoutInflater;
import android.view.Menu;
import android.view.View;
import android.view.ViewGroup;

public class MainActivity extends FragmentActivity{

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        getMenuInflater().inflate(R.menu.activity_main, menu);
        return true;
    }

    /* Add a class to handle fragment */
    public static class SSFFragment extends Fragment {
        @Override
        public View onCreateView(LayoutInflater inflater, ViewGroup container,
                Bundle savedInstanceState) {
            // Inflate the layout for this fragment
            View v = inflater.inflate(R.layout.choose_pill_frag, container,
                    false);
            return v;
        }
    }

    public void red(View view) {


        // Create new fragment and transaction
        ExampleFragments newFragment = new ExampleFragments();
        android.support.v4.app.FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();

        // Replace whatever is in the fragment_container view with this fragment,
        // and add the transaction to the back stack
        transaction.replace(R.id.frag, newFragment);
        transaction.addToBackStack(null);

        // Commit the transaction
        transaction.commit();
    }

    public void blue(View view) {
        //Figure out code for "red" first
    }

}

ExampleFragments.java:

package com.example.learn.fragments;

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

public class ExampleFragments extends Fragment {
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) {
        // Inflate the layout for this fragment
        return inflater.inflate(R.layout.red_pill_frag, container, false);
    }
}

ActivityMain.xml:

<RelativeLayout 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" >

    <fragment
        android:id="@+id/frag"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        class="com.example.learn.fragments.MainActivity$SSFFragment" />

</RelativeLayout>

Choose_pill_frag.xml

<RelativeLayout 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" >

    <ImageButton
        android:id="@+id/imageButton1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:onClick="blue"
        android:src="@drawable/blue" />

    <ImageButton
        android:id="@+id/imageButton2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_alignParentTop="true"
        android:onClick="red"
        android:src="@drawable/red" />

</RelativeLayout>

red_pill_frag.xml

<RelativeLayout 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" >

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:text="You stay in Wonderland and I show you how deep the rabbit-hole goes."
        android:textAppearance="?android:attr/textAppearanceLarge" />

</RelativeLayout>

アプリケーションは2つのボタンを表示する必要があります。2つのボタンは1つのフラグメントに存在し、ボタンを押すと、フラグメントは適切なテキストを表示する新しいフラグメントに置き換えられます。今のところ、それは置き換えられるはずですが、それは上に追加するだけのようです。

4

5 に答える 5

26

アクティビティのレイアウトxmlで<fragment>使用する代わりに。<FrameLayout>

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/container_id"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />

次に、最初のフラグメントFragmentActivityを追加します(あなたの場合):onCreateSSFFragment

    FragmentA fragmentA = new FragmentA();
    FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();
    transaction.add(R.id.container_id, fragmentA);
    transaction.commit();

フラグメントの内側から、コンテナ内のフラグメントを置き換えることができます。

class FragmentA extends Fragment {
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState) {
        Button button = new Button(getActivity());
        button.setText("Replace");
        button.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {
                FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();
                FragmentB fragmentB = new FragmentB();
                transaction.replace(R.id.container_id, fragmentB);
                transaction.commit();
            }
        });
        return button;
    }
}
于 2012-07-29T14:55:47.680 に答える
4

これがあなたの本当の質問への答えです...これはあなたの元の投稿から生じたあなたの2番目の質問だったので、私は別の方法でその断片を取得するためにソリューションを変更しました:

Fragment details = (Fragment)getSupportFragmentManager().findFragmentById(R.id.details);
details = new ExamplesFragment();
FragmentTransaction ft = getSupportFragmentManager().beginTransaction();
ft.replace(R.id.details, details);
ft.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_FADE);
ft.commit();

また、android.support.v4.appの部分は必要ありません。率直に言って、コード全体に追加および削除することで、「間違った道を進む」タイプの作業に何時間もかかる可能性があります(以下を使用している限り)。 )。

import android.support.v4.app.FragmentTransaction;

この私の例では、FragmentManagerのサポートをインポートする必要はありません。ただし、エラーが発生した場合は、ライブラリ自体を「libs」フォルダにインポートしたことを確認してください。

このソリューションは、フラグメントの重複の問題を修正し、フラグメントを交換することで人々がいじくり回す時間を節約できることを願っています。

于 2013-05-08T22:46:53.280 に答える
2

さて、私は同じ問題に直面していました、そして私はただメインレイアウトからの断片を線形レイアウトに置き換えて、それが何をしているのかを推測します..その奇妙な方法はわかりませんが、それは機能しています。私はアクションバーを使用して、コードを置き換えるためにフラグメントを切り替えています:

 protected class MyTabsListener1 implements ActionBar.TabListener{
        private Fragment frag ;
        public MyTabsListener1 ( Fragment frag){
            this.frag = frag;
        }

        @Override
        public void onTabReselected(Tab tab, FragmentTransaction ft) {
            //  TODO Auto-generated method stub

        }

        @Override
        public void onTabSelected(Tab tab, FragmentTransaction ft) {

                switch (tab.getPosition()){
                case 0:

                        ft.replace(R.id.replace, homeFrag);
                    break;

                case 1:
                    ft.replace(R.id.replace, createFrag);
                        break;

                case 2:
                    ft.replace(R.id.replace, ioListFrag);
                    break;
                case 3:

                    ft.replace(R.id.replace, settingFrag);

                    break;      


                default: 


                    break;

                }

            }

そして私の主なレイアウトはこれです:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >
    <LinearLayout
        android:id="@+id/replace"
        android:layout_width="wrap_content"
        android:layout_height="match_parent" >
    </LinearLayout>

</LinearLayout>
于 2012-08-01T07:00:24.797 に答える
1

つまり、フラグメントタグを使用してXMLで定義した場合、フラグメントを置き換えることはできません。代わりに、@ pawelziebaがアドバイスしたように、レイアウトにFrameタグを追加し、それを見つけて、そこにフラグメントを追加、削除、置換します。お役に立てば幸いです。乾杯

于 2012-08-03T09:53:37.903 に答える
0

フラグメントを使用する主な利点は、アクティビティが行うことである、画面全体ではなく、画面の一部をフラグメントが占めるようにすることができることです。

アクティビティのように機能する小さな画面用のアプリを作成しているが、フラグメントでコード化されてFragmentActivityいる場合は、フラグメントごとに個別に作成します。

これをFragmentActivityのonCreateにします。

public void onCreate(Bundle savedInstanceState) {
    setContentView(R.layout.emptylayout);

    FragmentManager fragmentManager = getSupportFragmentManager(); //Or getFragmentManager() if you're not using the support library
    FragmentTransaction fragmentTransaction = fragmentManager
            .beginTransaction();
    YourFragment fragment = new YourFragment();
    fragmentTransaction.add(R.id.emptyview, fragment);
    fragmentTransaction.commit();
}

ここで、layout / emptylayoutは、FrameLayoutを含むXMLレイアウトファイルです。id/emptyviewはそのFrameLayoutです。

フラグメントの実際のレイアウトにXMLを使用する場合は、実際のフラグメント用に別のXMLレイアウトを作成し、フラグメントの「onCreateView」でそれを拡張します。

public View onCreateView(LayoutInflater inflater, ViewGroup container,
        Bundle savedInstanceState) {
    View view = inflater.inflate(R.layout.files, container, false);
            // Do stuff here
    return view;
}

次に、を使用startActivity(new Intent(getActivity(), YourFragmentActivity.class))してフラグメントからFragmentActivityを起動します。

冗長に思えますが、後で大きな画面をターゲットにする場合(そうでない場合は、なぜフラグメントに悩まされるのですか?)、長期的には簡単になります。

于 2012-07-28T02:34:11.093 に答える