我遇到此错误 “ java.lang.IllegalStateException:另一个SimpleCache实例使用该文件夹:” 我正在使用SimpleExoPlayer,当我尝试第二次打开视频时显示此错误 如何关闭或删除以前的simplecache? 这是我的代码:
SimpleExoPlayerView simpleExoPlayerView = findViewById(R.id.video_view);
SimpleExoPlayer player = ExoPlayerFactory.newSimpleInstance(this, new DefaultTrackSelector(new DefaultBandwidthMeter.Builder().build()));
SimpleCache downloadCache = new SimpleCache(new File(getCacheDir(), "exoCache"), new NoOpCacheEvictor());
String uri = "http://dash.akamaized.net/akamai/bbb/bbb_1280x720_60fps_6000k.mp4";
DataSource.Factory dataSourceFactory = new CacheDataSourceFactory(downloadCache, new DefaultDataSourceFactory(this, "seyed"));
MediaSource mediaSource = new ExtractorMediaSource.Factory(dataSourceFactory).createMediaSource(Uri.parse(uri));
player.prepare(mediaSource);
simpleExoPlayerView.setPlayer(player);
player.setPlayWhenReady(true);
答案 0 :(得分:9)
您需要创建缓存类locations
,以确保您在所有应用程序中拥有一个free(locations);
CGRelease(mref);
CGColorSpaceRelease(spaceRef);
CGGradientRelease(gradientRef);
实例:
Singleton
并在您的代码中使用它,例如:
SimpleCache
答案 1 :(得分:0)
使cache
对象单例并不一定能解决问题,因为cache
仍然可以由于先前的音频播放器调用而被锁定。发生这种情况时,IllegalStateException
仍将被抛出。
要解决此问题,您需要在释放播放器时释放cache
,即,将其放入播放器的覆盖的release
方法中:
cache.release();
cache = null;