本文整理汇总了Java中com.liulishuo.filedownloader.util.FileDownloadHelper.holdContext方法的典型用法代码示例。如果您正苦于以下问题:Java FileDownloadHelper.holdContext方法的具体用法?Java FileDownloadHelper.holdContext怎么用?Java FileDownloadHelper.holdContext使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.liulishuo.filedownloader.util.FileDownloadHelper
的用法示例。
在下文中一共展示了FileDownloadHelper.holdContext方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: onCreate
import com.liulishuo.filedownloader.util.FileDownloadHelper; //导入方法依赖的package包/类
@Override
public void onCreate() {
super.onCreate();
FileDownloadHelper.holdContext(this);
try {
FileDownloadUtils.setMinProgressStep(FileDownloadProperties.getImpl().DOWNLOAD_MIN_PROGRESS_STEP);
FileDownloadUtils.setMinProgressTime(FileDownloadProperties.getImpl().DOWNLOAD_MIN_PROGRESS_TIME);
} catch (IllegalAccessException e) {
e.printStackTrace();
}
final FileDownloadManager manager = new FileDownloadManager();
if (FileDownloadProperties.getImpl().PROCESS_NON_SEPARATE) {
handler = new FDServiceSharedHandler(new WeakReference<>(this), manager);
} else {
handler = new FDServiceSeparateHandler(new WeakReference<>(this), manager);
}
}
示例2: init
import com.liulishuo.filedownloader.util.FileDownloadHelper; //导入方法依赖的package包/类
/**
* @deprecated please using {@link #setupOnApplicationOnCreate(Application)} instead.
*/
public static void init(final Context context,
final DownloadMgrInitialParams.InitCustomMaker maker) {
if (FileDownloadLog.NEED_LOG) {
FileDownloadLog.d(FileDownloader.class, "init Downloader with params: %s %s",
context, maker);
}
if (context == null) {
throw new IllegalArgumentException("the provided context must not be null!");
}
FileDownloadHelper.holdContext(context.getApplicationContext());
CustomComponentHolder.getImpl().setInitCustomMaker(maker);
}
示例3: onCreate
import com.liulishuo.filedownloader.util.FileDownloadHelper; //导入方法依赖的package包/类
@Override
public void onCreate() {
super.onCreate();
FileDownloadHelper.holdContext(this);
try {
FileDownloadUtils.setMinProgressStep(
FileDownloadProperties.getImpl().downloadMinProgressStep);
FileDownloadUtils.setMinProgressTime(
FileDownloadProperties.getImpl().downloadMinProgressTime);
} catch (IllegalAccessException e) {
e.printStackTrace();
}
final FileDownloadManager manager = new FileDownloadManager();
if (FileDownloadProperties.getImpl().processNonSeparate) {
handler = new FDServiceSharedHandler(new WeakReference<>(this), manager);
} else {
handler = new FDServiceSeparateHandler(new WeakReference<>(this), manager);
}
}
示例4: init
import com.liulishuo.filedownloader.util.FileDownloadHelper; //导入方法依赖的package包/类
/**
* @deprecated please using {@link #setupOnApplicationOnCreate(Application)} instead.
*/
public static void init(final Context context,
final DownloadMgrInitialParams.InitCustomMaker maker) {
if (FileDownloadLog.NEED_LOG) {
FileDownloadLog.d(FileDownloader.class, "init Downloader with params: %s %s",
context, maker);
}
if (context == null)
throw new IllegalArgumentException("the provided context must not be null!");
FileDownloadHelper.holdContext(context.getApplicationContext());
CustomComponentHolder.getImpl().setInitCustomMaker(maker);
}
示例5: setupOnApplicationOnCreate
import com.liulishuo.filedownloader.util.FileDownloadHelper; //导入方法依赖的package包/类
/**
* Using this method to setup the FileDownloader only you want to register your own customize
* components for Filedownloader, otherwise just using {@link #setup(Context)} instead.
* <p/>
* Please invoke this method on the {@link Application#onCreate()} because of the customize
* components must be assigned before FileDownloader is running.
* <p/>
* Such as:
* <p/>
* class MyApplication extends Application {
* ...
* public void onCreate() {
* ...
* FileDownloader.setupOnApplicationOnCreate(this)
* .idGenerator(new MyIdGenerator())
* .database(new MyDatabase())
* ...
* .commit();
* ...
* }
* ...
* }
* @param application the application.
* @return the customize components maker.
*/
public static DownloadMgrInitialParams.InitCustomMaker setupOnApplicationOnCreate(Application application) {
final Context context = application.getApplicationContext();
FileDownloadHelper.holdContext(context);
DownloadMgrInitialParams.InitCustomMaker customMaker = new DownloadMgrInitialParams.InitCustomMaker();
CustomComponentHolder.getImpl().setInitCustomMaker(customMaker);
return customMaker;
}
示例6: setupOnApplicationOnCreate
import com.liulishuo.filedownloader.util.FileDownloadHelper; //导入方法依赖的package包/类
/**
* Using this method to setup the FileDownloader only you want to register your own customize
* components for Filedownloader, otherwise just using {@link #setup(Context)} instead.
* <p/>
* Please invoke this method on the {@link Application#onCreate()} because of the customize
* components must be assigned before FileDownloader is running.
* <p/>
* Such as:
* <p/>
* class MyApplication extends Application {
* ...
* public void onCreate() {
* ...
* FileDownloader.setupOnApplicationOnCreate(this)
* .idGenerator(new MyIdGenerator())
* .database(new MyDatabase())
* ...
* .commit();
* ...
* }
* ...
* }
* @param application the application.
* @return the customize components maker.
*/
public static DownloadMgrInitialParams.InitCustomMaker setupOnApplicationOnCreate(
Application application) {
final Context context = application.getApplicationContext();
FileDownloadHelper.holdContext(context);
DownloadMgrInitialParams.InitCustomMaker customMaker =
new DownloadMgrInitialParams.InitCustomMaker();
CustomComponentHolder.getImpl().setInitCustomMaker(customMaker);
return customMaker;
}
示例7: setup
import com.liulishuo.filedownloader.util.FileDownloadHelper; //导入方法依赖的package包/类
/**
* You can invoke this method anytime before you using the FileDownloader.
* <p>
* If you want to register your own customize components please using {@link #setupOnApplicationOnCreate(Application)}
* on the {@link Application#onCreate()} instead.
*
* @param context the context of Application or Activity etc..
*/
public static void setup(Context context) {
FileDownloadHelper.holdContext(context.getApplicationContext());
}
示例8: setup
import com.liulishuo.filedownloader.util.FileDownloadHelper; //导入方法依赖的package包/类
/**
* You can invoke this method anytime before you using the FileDownloader.
* <p>
* If you want to register your own customize components please using
* {@link #setupOnApplicationOnCreate(Application)} on the {@link Application#onCreate()}
* instead.
*
* @param context the context of Application or Activity etc..
*/
public static void setup(Context context) {
FileDownloadHelper.holdContext(context.getApplicationContext());
}