2

3 つのフラグメントに渡したい 3 つの ArrayList> があります。それらを静的にする以外に、これを行うための最良のアプローチは何ですか?

4

2 に答える 2

3

Fragment で setArguments を使用できます。http://developer.android.com/guide/components/fragments.htmlを見てください。基本的には、フラグメントを作成する前にバンドルを作成してから、引数として設定します。

Android ドキュメントの例:

public static class DetailsActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        if (getResources().getConfiguration().orientation
                == Configuration.ORIENTATION_LANDSCAPE) {
            // If the screen is now in landscape mode, we can show the
            // dialog in-line with the list so we don't need this activity.
            finish();
            return;
        }

        if (savedInstanceState == null) {
            // During initial setup, plug in the details fragment.
            DetailsFragment details = new DetailsFragment();
            details.setArguments(getIntent().getExtras());
            getFragmentManager().beginTransaction().add(android.R.id.content, details).commit();
        }
    }
}

getIntent().getExtras() を使用する代わりに、バンドルを作成して引数を設定します

Bundle bundle = new Bundle();
bundle.putSerializable(YOUR_KEY, yourObject);
fragment.setArguments(bundle);

そしてあなたのフラグメントのために:

public static class DetailsFragment extends Fragment {
    /**
     * Create a new instance of DetailsFragment, initialized to
     * show the text at 'index'.
     */
    public static DetailsFragment newInstance(int index) {
        DetailsFragment f = new DetailsFragment();

        // Supply index input as an argument.
        Bundle args = new Bundle();
        args.putInt("index", index);
        f.setArguments(args);

        return f;
    }

    public int getShownIndex() {
        return getArguments().getInt("index", 0);
    }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState) {
        if (container == null) {
            // We have different layouts, and in one of them this
            // fragment's containing frame doesn't exist.  The fragment
            // may still be created from its saved state, but there is
            // no reason to try to create its view hierarchy because it
            // won't be displayed.  Note this is not needed -- we could
            // just run the code below, where we would create and return
            // the view hierarchy; it would just never be used.
            return null;
        }

        ScrollView scroller = new ScrollView(getActivity());
        TextView text = new TextView(getActivity());
        int padding = (int)TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP,
                4, getActivity().getResources().getDisplayMetrics());
        text.setPadding(padding, padding, padding, padding);
        scroller.addView(text);
        text.setText(Shakespeare.DIALOGUE[getShownIndex()]);
        return scroller;
    }
}
于 2012-08-09T14:04:20.393 に答える
1

リスナー コールバック インターフェイスを作成して、フラグメントに実装できます。このようなもの:

@Override
public void onSomeEvent(List<SomeData> data) {
    //do something with data
}

アクティビティで、次のインターフェイスを作成します。

public interface OnSomeEventListener {
    onSomeEvent(List<SomeData> data);
}

次に、findFragmentById または findFragmentByTag を使用してフラグメントを取得し、リスナーに割り当てます。

this.onSomeEventListener = fragment; 

その後、そのインターフェイスのメソッドを呼び出すことができ、フラグメントはコールバックを受け取ります。

フラグメントとアクティビティ間の 2 番目のより簡単な通信方法は、BroadcastReceivers です。フラグメントに BroadcastReceiver を登録してから、アクティビティから sendBroadcast() を呼び出すことができます。データのリストは、そのブロードキャスト メッセージのバンドルに入れることができます。

于 2012-08-09T14:22:38.397 に答える