提交 2cf59d30 编写于 作者: S shuyu

1.4.9 readme

上级 7abe5476
...@@ -18,6 +18,7 @@ ...@@ -18,6 +18,7 @@
* **支持IJKPlayer和EXOPlayer切换。** * **支持IJKPlayer和EXOPlayer切换。**
* **进度条小窗口预览(测试)。** * **进度条小窗口预览(测试)。**
* **Https支持** * **Https支持**
* **连续播放一个列表的视频**
## QQ群,有兴趣的可以进来,无底线欢迎:174815284 。 ## QQ群,有兴趣的可以进来,无底线欢迎:174815284 。
...@@ -40,7 +41,7 @@ allprojects { ...@@ -40,7 +41,7 @@ allprojects {
``` ```
dependencies { dependencies {
compile 'com.github.CarGuo:GSYVideoPlayer:v1.4.8' compile 'com.github.CarGuo:GSYVideoPlayer:v1.4.9'
} }
``` ```
...@@ -69,6 +70,12 @@ dependencies { ...@@ -69,6 +70,12 @@ dependencies {
## 下方个版本说明,可以当做简单的wiki使用~,效果可参考DEMO。 ## 下方个版本说明,可以当做简单的wiki使用~,效果可参考DEMO。
### 1.4.9
* 增加了连续播放列表的支持 ListGSYVideoPlayer。
* 增加了列表播放的demo DetailListPlayer。
* 减小了https版本的so的大小。
### 1.4.8 ### 1.4.8
* 锁定屏幕按键增加锁定屏幕旋转功能。 * 锁定屏幕按键增加锁定屏幕旋转功能。
* 锁定屏幕按键增加回调接口。 * 锁定屏幕按键增加回调接口。
......
...@@ -42,17 +42,19 @@ public class MainActivity extends AppCompatActivity { ...@@ -42,17 +42,19 @@ public class MainActivity extends AppCompatActivity {
JumpUtils.goToVideoPlayer2(this); JumpUtils.goToVideoPlayer2(this);
break; break;
case R.id.recycler_2: case R.id.recycler_2:
//recycler的demo
JumpUtils.goToVideoRecyclerPlayer2(this); JumpUtils.goToVideoRecyclerPlayer2(this);
break; break;
case R.id.list_detail: case R.id.list_detail:
//支持全屏重力旋转的列表播放,滑动后不会被销毁 //支持旋转全屏的详情模式
JumpUtils.goToDetailPlayer(this); JumpUtils.goToDetailPlayer(this);
break; break;
case R.id.list_detail_list: case R.id.list_detail_list:
//支持全屏重力旋转的列表播放,滑动后不会被销毁 //播放一个连续列表
JumpUtils.goToDetailListPlayer(this); JumpUtils.goToDetailListPlayer(this);
break; break;
case R.id.clear_cache: case R.id.clear_cache:
//清理缓存
GSYVideoManager.clearAllDefaultCache(MainActivity.this); GSYVideoManager.clearAllDefaultCache(MainActivity.this);
//String url = "http://baobab.wdjcdn.com/14564977406580.mp4"; //String url = "http://baobab.wdjcdn.com/14564977406580.mp4";
//GSYVideoManager.clearDefaultCache(MainActivity.this, url); //GSYVideoManager.clearDefaultCache(MainActivity.this, url);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册