Skip to content

Commit

Permalink
优化快捷菜单半透明背景
Browse files Browse the repository at this point in the history
  • Loading branch information
fg607 committed Sep 15, 2018
1 parent b770a46 commit 79d1e37
Show file tree
Hide file tree
Showing 8 changed files with 92 additions and 97 deletions.
Binary file modified .idea/caches/build_file_checksums.ser
Binary file not shown.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ android {
minSdkVersion 18
targetSdkVersion 28

versionCode 33
versionName "3.0.4.1"
versionCode 34
versionName "3.0.4.2"
}

signingConfigs {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ public void developerInfo() {
dialog.setTitle("关于悬浮助手");
dialog.setCancelable(true);
dialog.setCanceledOnTouchOutside(true);
dialog.setMessage("版本:3.0.4.1\r\n作者:fg607\r\n邮箱:[email protected]");
dialog.setMessage("版本:3.0.4.2\r\n作者:fg607\r\n邮箱:[email protected]");
dialog.show();
}

Expand Down Expand Up @@ -463,16 +463,11 @@ public void questionsAnswer() {
public void showUpdateInfo() {

AlertDialog dialog = new AlertDialog.Builder(this).create();
dialog.setTitle("悬浮助手-3.0.4.1版本更新内容");
dialog.setTitle("悬浮助手-3.0.4.2版本更新内容");
dialog.setCancelable(true);
dialog.setCanceledOnTouchOutside(true);
dialog.setMessage("" +
"3.0.4.1版本更新内容:\r\n"+
"1.优化避让速度。\r\n"+
"2.修复设置界面状态栏bug。\r\n"+
"3.0.4版本更新内容:\r\n"+
"1.完整的避让软键盘功能,基本适用所有安卓版本(自动避让,自动复原,只需一个输入法)。\r\n"+
"2.恢复锁屏功能。\r\n"+
"1.优化快捷菜单半透明背景,覆盖状态栏和导航栏。\r\n"+
"");
dialog.show();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -576,7 +576,7 @@ public void run() {
//Toast.makeText(this,"截图失败!",Toast.LENGTH_SHORT).show();
}

FloatingBallUtils.bitmap = null;
FloatingBallUtils.screenShotBitmap = null;
bitmap.recycle();

}
Expand Down
Loading

0 comments on commit 79d1e37

Please sign in to comment.