- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我在 onPostCreate
的 Activity 中使用了 TextWatcher
,但现在我已经将它变成了 Fragment。
fragment 中的这个等价物是什么?
@Override
protected void onPostCreate(Bundle savedInstanceState) {
mSearchView.addTextChangedListener(filterTextWatcher);
super.onPostCreate(savedInstanceState);
}
最佳答案
查看 fragment 生命周期。等到 Fragment 附加到 Activity
http://developer.android.com/guide/components/fragments.html
您可以在 onActivityCreated
中完成您的工作。
要获取 Context
,请使用 getActivity()
protected void onPostCreate (Bundle savedInstanceState)
Added in API level 1
Called when Activity start-up is complete (after
onStart()
andonRestoreInstanceState(Bundle)
have been called). Applications will generally not implement this method; it is intended for system classes to do final initialization after application code has run.Derived classes must call through to the super class's implementation of this method. If they do not, an exception will be thrown.
Parameters
savedInstanceState
If the Activity is being re-initialized after previously being shut down then this Bundle contains the data it most recently supplied inonSaveInstanceState(Bundle)
. Note: Otherwise it is null.
关于android - fragment 中的 OnPostCreate,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24221528/
我在 onPostCreate 的 Activity 中使用了 TextWatcher,但现在我已经将它变成了 Fragment。 fragment 中的这个等价物是什么? @Override p
根据文档, Called when activity start-up is complete (after onStart() and onRestoreInstanceState(Bundle)
我想动态更改 onCreateOptionsMenu 项。我已经纠正了我的问题,唯一的解决办法是在 onPostCreate 中调用 onCreateOptionsMenu 但我不知道如何调用它。我已
关于 Android 注释, @AfterViews 相当于 onCreate 还是 onPostCreate? 或者每个注释的等效注释是什么? 我可以删除“onCreate”和“onPostCrea
在 onCreate() 和 onPostCreate() 之间执行的 UI 线程 MessageQueue 中是否有任何 Runnable?换句话说,我的 AsyncTask 的 onPostExe
我有两 block “验证”代码需要按特定顺序执行,但 onPostCreate() 事件中的代码在 onCreate() 事件中的代码之前触发,我怀疑它可能有什么与 Preference Store
我正在学习在 Android 中创建抽屉导航。阅读时this ,我看不懂下面的代码: @Override protected void onPostCreate(Bundle savedInstanc
我细化了Android Studio的Navigation Drawer Activity项目模板,使用Toolbar、v7.app.ActionBarDrawerToggle和NavigationV
我是一名优秀的程序员,十分优秀!