Skip to content
This repository has been archived by the owner on Jun 8, 2024. It is now read-only.

Commit

Permalink
MainActivity: Fix back key
Browse files Browse the repository at this point in the history
Signed-off-by: Fung <fython@163.com>
  • Loading branch information
fython committed Nov 23, 2017
1 parent 326bfae commit 9471fe6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ android {
applicationId "info.papdt.blackblub"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode rootProject.ext.versionCode
versionName rootProject.ext.versionName
versionCode 17
versionName '2.1.1'
}

compileOptions {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ public boolean onKeyDown(int keyCode, KeyEvent event) {
}
return true;
}
return false;
return super.onKeyDown(keyCode, event);
}

private void setSeekBarProgress(int progress) {
Expand Down

0 comments on commit 9471fe6

Please sign in to comment.