我最近
添加了片段到我的应用程序.对于一个新的应用程序,我需要得到
一旦我的片段被
显示,
通知.所以我可以尽快做一些计算
片段再次
显示.
我的片段与TabIndicator一起使用,它只有一个FragmentClass被使用
几次
这是正常的标准覆盖类:
@Override
public void onHiddenChanged(boolean hidden) {
super.onHiddenChanged(hidden);
}
还在寻找答案? onHiddenChanged在第一次
显示片段时不会被
调用.只有当它改变状态.
从文档:
Called when the hidden state (as returned by isHidden()) of the fragment has changed. Fragments start out not hidden; this will be called whenever the fragment changes state from that.
原文链接:https://www.f2er.com/android/312274.html