资源简介
使用Vitamio打造自己的Android万能播放器.............................................
代码片段和文件信息
package com.nmbb.oplayer;
import android.app.Application;
import android.content.Context;
import android.content.Intent;
import android.os.Environment;
import com.nmbb.oplayer.service.MediaScannerService;
import com.nmbb.oplayer.util.FileUtils;
public class OPlayerApplication extends Application {
private static OPlayerApplication mApplication;
/** OPlayer SD卡缓存路径 */
public static final String OPlayer_CACHE_base = Environment.getExternalStorageDirectory() + “/oplayer“;
/** 视频截图缓冲路径 */
public static final String OPlayer_VIDEO_THUMB = OPlayer_CACHE_base + “/thumb/“;
/** 首次扫描 */
public static final String PREF_KEY_FIRST = “application_first“;
@Override
public void onCreate() {
super.onCreate();
mApplication = this;
init();
}
private void init() {
//创建缓存目录
FileUtils.createIfNoExists(OPlayer_CACHE_base);
FileUtils.createIfNoExists(OPlayer_VIDEO_THUMB);
}
public static OPlayerApplication getApplication() {
return mApplication;
}
public static Context getContext() {
return mApplication;
}
/** 销毁 */
public void destory() {
mApplication = null;
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2017-04-26 13:59 branches\
目录 0 2017-04-26 13:59 tags\
目录 0 2017-04-26 13:59 trunk\
目录 0 2017-04-26 13:59 trunk\OPla
文件 364 2017-04-26 13:59 trunk\OPla
文件 810 2017-04-26 13:59 trunk\OPla
文件 11121 2017-04-26 13:59 trunk\OPla
目录 0 2017-04-26 13:59 trunk\OPla
文件 67839 2017-04-26 13:59 trunk\OPla
目录 0 2017-04-26 13:59 trunk\OPla
文件 247894 2017-04-26 13:59 trunk\OPla
目录 0 2017-04-26 13:59 trunk\OPla
目录 0 2017-04-26 13:59 trunk\OPla
文件 70732 2017-04-26 13:59 trunk\OPla
文件 50541 2017-04-26 13:59 trunk\OPla
文件 277837 2017-04-26 13:59 trunk\OPla
文件 182211 2017-04-26 13:59 trunk\OPla
文件 39505 2017-04-26 13:59 trunk\OPla
文件 361 2017-04-26 13:59 trunk\OPla
目录 0 2017-04-26 13:59 trunk\OPla
目录 0 2017-04-26 13:59 trunk\OPla
目录 0 2017-04-26 13:59 trunk\OPla
文件 358 2017-04-26 13:59 trunk\OPla
文件 193 2017-04-26 13:59 trunk\OPla
文件 6911 2017-04-26 13:59 trunk\OPla
文件 7695 2017-04-26 13:59 trunk\OPla
文件 2110 2017-04-26 13:59 trunk\OPla
文件 4581 2017-04-26 13:59 trunk\OPla
文件 906 2017-04-26 13:59 trunk\OPla
文件 8084 2017-04-26 13:59 trunk\OPla
文件 7880 2017-04-26 13:59 trunk\OPla
............此处省略126个文件信息
相关资源
- Vitamio 5.2.3 Android Studio
- Vitamio 5.2.3 for AS
- Android应用源码使用Vitamio框架的网络在
- Android Vitamio的使用解析Part3
- 基于Vitamio自己做的一个视频播放的小
- android基于vitamio的视频播放器; 2.支持
- Vitamio 5.2.3 Android Studio.zip
- Android Vitamio基本调用
- Vitamio 视频播放器 的使用
- android短视频拍摄源码(Vitamio Recorde
- android 万能视频/音频播放(Vitamio支持
- 基于Vitamio框架的视频播放器
评论
共有 条评论