提交 4cd94515 编写于 作者: S shuyu

readme(2017-04-20)

上级 4a46ead2
......@@ -36,7 +36,7 @@
#### 直接在module下的build.gradle添加
```
compile 'com.shuyu:GSYVideoPlayer:1.6.3'
compile 'com.shuyu:GSYVideoPlayer:1.6.4'
```
......@@ -57,7 +57,7 @@ allprojects {
```
dependencies {
compile 'com.github.CarGuo:GSYVideoPlayer:v1.6.3'
compile 'com.github.CarGuo:GSYVideoPlayer:v1.6.4'
}
```
......@@ -103,9 +103,10 @@ dependencies {
## 近期版本
### 1.6.4(未发布)
### 1.6.4(2017-04-20)
* update ijk to 0.7.9 (增加了soundTouch,调速后声音变调问题得到解决)
* 修复了可能出现的判空问题,修复了ListGSYVideoPlayer的同步问题
* 修复了可移动小窗口播放结束无法移动的问题
### 1.6.3(2017-04-15)
......
## 下方个版本说明,可以当做简单的wiki使用~,效果可参考DEMO。
### 1.6.4(未发布)
### 1.6.4(2017-04-20)
* update ijk to 0.7.9 (增加了soundTouch,调速后声音变调问题得到解决)
* 修复了可能出现的判空问题,修复了ListGSYVideoPlayer的同步问题
* 修复了可移动小窗口播放结束无法移动的问题
### 1.6.3(2017-04-15)
* 修改了播放器全屏时的选择90度问题
......
......@@ -4,6 +4,7 @@ import android.annotation.TargetApi;
import android.content.pm.ActivityInfo;
import android.os.Build;
import android.os.Bundle;
import android.os.Handler;
import android.support.v4.view.ViewCompat;
import android.support.v7.app.AppCompatActivity;
import android.transition.Transition;
......@@ -156,8 +157,13 @@ public class PlayActivity extends AppCompatActivity {
if (isTransition && Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
super.onBackPressed();
} else {
finish();
overridePendingTransition(R.anim.abc_fade_in, R.anim.abc_fade_out);
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
finish();
overridePendingTransition(R.anim.abc_fade_in, R.anim.abc_fade_out);
}
}, 500);
}
}
......
......@@ -18,7 +18,7 @@ org.gradle.jvmargs=-Xmx1536m
BINTRAY_USER=carguo
BINTRAY_KEY=
PROJ_GROUP=com.shuyu
PROJ_VERSION=1.6.3
PROJ_VERSION=1.6.4
PROJ_NAME=gsyVideoPlayer
PROJ_WEBSITEURL=https://github.com/CarGuo/GSYVideoPlayer
PROJ_ISSUETRACKERURL=
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册