Skip to content

Commit

Permalink
readme(2017-04-20)
Browse files Browse the repository at this point in the history
  • Loading branch information
CarGuo committed Apr 20, 2017
1 parent 4a46ead commit 4cd9451
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 7 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@

#### 直接在module下的build.gradle添加
```
compile 'com.shuyu:GSYVideoPlayer:1.6.3'
compile 'com.shuyu:GSYVideoPlayer:1.6.4'
```

Expand All @@ -57,7 +57,7 @@ allprojects {

```
dependencies {
compile 'com.github.CarGuo:GSYVideoPlayer:v1.6.3'
compile 'com.github.CarGuo:GSYVideoPlayer:v1.6.4'
}
```

Expand Down Expand Up @@ -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)
Expand Down
3 changes: 2 additions & 1 deletion UPDATE_VERSION.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
## 下方个版本说明,可以当做简单的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度问题
Expand Down
10 changes: 8 additions & 2 deletions app/src/main/java/com/example/gsyvideoplayer/PlayActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
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;
Expand Down Expand Up @@ -156,8 +157,13 @@ public void onBackPressed() {
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);
}
}

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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=
Expand Down

0 comments on commit 4cd9451

Please sign in to comment.