web-dev-qa-db-ja.com

フラグメントにインターフェースを渡す

Fragment AFragment Bがある場合を考えてみましょう。

B宣言:

public interface MyInterface {
    public void onTrigger(int position);
}

Aはこのインターフェースを実装します。

Fragment Bをスタックにプッシュするとき、BundleFragment Aの参照をどのように渡してAが必要なときにonTriggerコールバックを取得できるようにする必要がありますか。

私のユースケースシナリオでは、AにはListViewがあり、BにはViewPagerがあります。両方に同じアイテムが含まれており、ユーザーがBをポップする前にB -> Aから移動する場合、Aのコールバックをトリガーして、ListViewの位置をBページャーの位置。

ありがとう。

19
Niko
Passing interface to Fragment

あなたは2つのFragmentの間で通信していると思います

これを行うには、 他のフラグメントとの通信 を調べます。

public class FragmentB extends Fragment{
    MyInterface mCallback;

    // Container Activity must implement this interface
    public interface MyInterface {
        public void onTrigger();
    }

    @Override
    public void onAttach(Activity activity) {
        super.onAttach(activity);

        // This makes sure that the container activity has implemented
        // the callback interface. If not, it throws an exception
        try {
            mCallback = (MyInterface ) activity;
        } catch (ClassCastException e) {
            throw new ClassCastException(activity.toString()
                    + " must implement MyInterface ");
        }
    }

    ...
}
23
Amit Gupta

Kotlin 1.0.0-beta-3595の場合

interface SomeCallback {}

class SomeFragment() : Fragment(){

    var callback : SomeCallback? = null //some might want late init, but I think this way is safer

    override fun onCreateView(inflater: LayoutInflater?, container: ViewGroup?, savedInstanceState: Bundle?): View? {
        callback = activity as? SomeCallback //returns null if not type 'SomeCallback'

        return inflater!!.inflate(R.layout.frag_some_view, container, false);
    }
}
4
Krtko

2つのフラグメントがアクティビティを介してのみ通信することが最適です。したがって、アクティビティに実装されているフラグメントBのインターフェースを定義できます。次に、アクティビティで、インターフェイスメソッドでフラグメントAで何を実行するかを定義します。

フラグメントBでは、

MyInterface mCallback;
 public interface MyInterface {
        void onTrigger(int position);
    }

@Override
    public void onAttach(Activity activity) {
        super.onAttach(activity);
        // This makes sure that the container activity has implemented
        // the callback interface. If not, it throws an exception
        try {
            mCallback = (MyInterface) activity;
        } catch (ClassCastException e) {
            throw new ClassCastException(activity.toString()
                    + " must implement MyInterface");
        }
}

ユーザーがBからAに移動したかどうかを判別する方法

public void onChangeFragment(int position){
//other logic here
 mCallback.onTrigger(position);
}

アクティビティでは、

public void onTrigger(int position) {
    //Find listview in fragment A
    listView.smoothScrollToPosition(position);
    }

幸運を!

1
Yaya

以下に書いてあるように、あなたはコミュニケーションを使うべきだと思います。このコードは this Androidフラグメント間の通信の開発ページ

HeadlinesFragment

public class HeadlinesFragment extends ListFragment {
OnHeadlineSelectedListener mCallback;

public void setOnHeadlineSelectedListener(Activity activity) {
    mCallback = activity;
}

// Container Activity must implement this interface
public interface OnHeadlineSelectedListener {
    public void onArticleSelected(int position);
}

// ...
}

MainActivity

public static class MainActivity extends Activity
    implements HeadlinesFragment.OnHeadlineSelectedListener{
// ...

@Override
public void onAttachFragment(Fragment fragment) {
    if (fragment instanceof HeadlinesFragment) {
        HeadlinesFragment headlinesFragment = (HeadlinesFragment) fragment;
        headlinesFragment.setOnHeadlineSelectedListener(this);
    }
}

public static class MainActivity extends Activity
    implements HeadlinesFragment.OnHeadlineSelectedListener {
...

public void onArticleSelected(int position) {
    // The user selected the headline of an article from the HeadlinesFragment
    // Do something here to display that article
}
0

@Amitの回答を使用し、OPの質問に適応すると、関連するすべてのコードが次のようになります。

public class FragmentA extends BaseFragment implements MyInterface {

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

        // THIS IS JUST AN EXAMPLE OF WHERE YOU MIGHT CREATE FragmentB
        FragmentB myFragmentB = new FragmentB();        
    }


    void onTrigger(int position){
        // My Callback Happens Here!
    }
}

...

public class FragmentB extends BaseFragment {

    private MyInterface callback;

    public interface MyInterface {
        void onTrigger(int position);
    }   

    @Override
    public void onAttach(Activity activity) {
        super.onAttach(activity);

        // This makes sure that the container activity has implemented
        // the callback interface. If not, it throws an exception
        try {
            callback = (MyInterface ) activity;
        } catch (ClassCastException e) {
            throw new ClassCastException(activity.toString() + " must implement MyInterface");
        }
    }
}
0
EdmundYeung99