Android:按下后退按钮时刷新上一个片段数据

Android:按下后退按钮时刷新上一个片段数据,第1张

概述我有2个片段,片段A和片段B.我在片段A上添加片段B,使用FragmentTransaction().添加,这意味着片段A是片段B的底层.有没有办法在片段A中更改数据我在Fragment B上做了一些事情并按下Fragment B中的Back按钮?我希望有一种通用方式来通知片段A.因为它可能是另一个片段被覆盖.我尝试使用FragmentTransaction.replace() – 它可以很好地刷 我有2个片段,片段A和片段B.我在片段A上添加片段B,使用FragmentTransaction().添加,这意味着片段A是片段B的底层.有没有办法在片段A中更改数据我在Fragment B上做了一些事情并按下Fragment B中的Back按钮?我希望有一种通用方式来通知片段A.因为它可能是另一个片段被覆盖.我尝试使用FragmentTransaction.replace() – 它可以很好地刷新上一页.解决方法 只需在您的活动和片段中覆盖onBackpressed()并在那里进行必要的调用.

可以在此处找到更多回调/与其他片段的通信:

Communicating with Other Fragments

public class FragmentA extends Fragment {    public voID updateMyself(String updateValue){        Log.v("update","weeee Fragment B updated me with" + updateValue);    }}public class FragmentB extends Fragment {    public Interface FragmentBCallBackInterface {        public voID update(String updateValue);    }    private FragmentBCallBackInterface mCallback;    @OverrIDe    public voID onAttach(Activity activity) {        super.onAttach(activity);        try {            mCallback = (FragmentBCallBackInterface) activity;        } catch (ClassCastException e) {            throw new ClassCastException(activity.toString()                    + " must implement FragmentBCallBackInterface");        }        //As an example we do an update here - normally you wouln't call the method until your user performs an onclick or something         letsUpateTheOtherFragment();    }    private voID letsUpateTheOtherFragment(){        mCallback.update("This is an update!);    }}public class MyActivity extends Activity implements FragmentInterfaceB {    @OverrIDe    public voID update(String updateValue){          FragmentA fragmentA = (FragmentA) getSupportFragmentManager().findFragmentByID(R.ID.article_fragment);        if (fragmentA != null) {            fragmentA.updateMyself(updateValue);        } else {            //replace the fragment... bla bla check example for this code        }    }}
总结

以上是内存溢出为你收集整理的Android:按下后退按钮时刷新上一个片段数据全部内容,希望文章能够帮你解决Android:按下后退按钮时刷新上一个片段数据所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1128852.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存