getSupportLoaderManager(id, args, ??) 的第三个参数类型是什么
What is the 3rd argument type for getSupportLoaderManager(id, args, ??)
我有一个 AsyncTaskLoader 方法可以重启当前的加载器,
学校用,
private void startAsyncTaskLoader()
{
getSupportLoaderManager().restartLoader(TASK_ID, null, this);
}
我可以在学校在线查看解决方案github但是这个很好,
但是在我的 android 工作室 "this" (第三个参数)是不正确的类型...
-->
Wrong 3rd argument type. Found: 'com.openclassrooms.freezap.Controllers.MainActivity', required: 'android.support.v4.app.LoaderManager.LoaderCallbacks<java.lang.Object>'
我知道我放置了一个上下文参数 (MainActivity),但我没有 LoaderManager 的实例。
What is the 3rd argument type for getSupportLoaderManager(id, args, ??)
该方法不带任何参数。
如果您真的是指 restartLoader()
,那么第三个参数是 android.support.v4.app.LoaderManager.LoaderCallbacks
,您可以从错误消息和 the documentation for restartLoader()
.
中看出
我有一个 AsyncTaskLoader 方法可以重启当前的加载器,
学校用,
private void startAsyncTaskLoader()
{
getSupportLoaderManager().restartLoader(TASK_ID, null, this);
}
我可以在学校在线查看解决方案github但是这个很好, 但是在我的 android 工作室 "this" (第三个参数)是不正确的类型...
-->
Wrong 3rd argument type. Found: 'com.openclassrooms.freezap.Controllers.MainActivity', required: 'android.support.v4.app.LoaderManager.LoaderCallbacks<java.lang.Object>'
我知道我放置了一个上下文参数 (MainActivity),但我没有 LoaderManager 的实例。
What is the 3rd argument type for getSupportLoaderManager(id, args, ??)
该方法不带任何参数。
如果您真的是指 restartLoader()
,那么第三个参数是 android.support.v4.app.LoaderManager.LoaderCallbacks
,您可以从错误消息和 the documentation for restartLoader()
.