Fragment A
とFragment B
がある場合を考えてみましょう。
B
宣言:
public interface MyInterface {
public void onTrigger(int position);
}
A
はこのインターフェースを実装します。
Fragment B
をスタックにプッシュするとき、Bundle
でFragment A
の参照をどのように渡してA
が必要なときにonTrigger
コールバックを取得できるようにする必要がありますか。
私のユースケースシナリオでは、A
にはListView
があり、B
にはViewPager
があります。両方に同じアイテムが含まれており、ユーザーがB
をポップする前にB -> A
から移動する場合、A
のコールバックをトリガーして、ListView
の位置をB
ページャーの位置。
ありがとう。
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 ");
}
}
...
}
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);
}
}
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);
}
幸運を!
以下に書いてあるように、あなたはコミュニケーションを使うべきだと思います。このコードは 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
}
@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");
}
}
}