-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
28 changed files
with
712 additions
and
184 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
[{"outputType":{"type":"APK"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":24},"path":"app-release.apk","properties":{"packageId":"com.hardwork.fg607.relaxfinger","split":"","minSdkVersion":"18"}}] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 3 additions & 0 deletions
3
app/src/main/java/com/hardwork/fg607/relaxfinger/MyApplication.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,6 +30,7 @@ | |
import com.hardwork.fg607.relaxfinger.view.NotifySettingFragment; | ||
import com.hardwork.fg607.relaxfinger.view.SettingFragment; | ||
|
||
import net.grandcentrix.tray.AppPreferences; | ||
import net.grandcentrix.tray.TrayAppPreferences; | ||
|
||
import static com.hardwork.fg607.relaxfinger.utils.AccessibilityUtil.checkAccessibility; | ||
|
@@ -44,7 +45,7 @@ public class SettingActivity extends AppCompatActivity { | |
private HideSettingFragment mHideSettingFragment; | ||
private NotifySettingFragment mNotifySettingFragment; | ||
private FragmentTransaction mTransaction; | ||
private TrayAppPreferences mPreferences; | ||
private AppPreferences mPreferences; | ||
public static Messenger sMessenger = null; | ||
private boolean mBound = false; | ||
private FloatingActionButton mFab; | ||
|
@@ -447,7 +448,7 @@ public void developerInfo() { | |
dialog.setTitle("关于悬浮助手"); | ||
dialog.setCancelable(true); | ||
dialog.setCanceledOnTouchOutside(true); | ||
dialog.setMessage("版本:2.1\r\n作者:fg607\r\n邮箱:[email protected]"); | ||
dialog.setMessage("版本:3.0\r\n作者:fg607\r\n邮箱:[email protected]"); | ||
dialog.show(); | ||
} | ||
|
||
|
@@ -481,17 +482,19 @@ public void questionsAnswer() { | |
public void showUpdateInfo() { | ||
|
||
AlertDialog dialog = new AlertDialog.Builder(this).create(); | ||
dialog.setTitle("悬浮助手-2.1版本更新内容"); | ||
dialog.setTitle("悬浮助手-3.0版本更新内容"); | ||
dialog.setCancelable(true); | ||
dialog.setCanceledOnTouchOutside(true); | ||
dialog.setMessage("" + | ||
"1.避让软键盘后点击悬浮球关闭输入法并退出避让模式。\r\n" + | ||
"2.更新了一个悬浮球主题。\r\n" + | ||
"3.添加完全退出悬浮球提示。\r\n"+ | ||
"4.修复触发休眠后,亮屏第一次手势无效的bug。\r\n" + | ||
"5.修复某些情况下悬浮球消失的bug。\r\n"+ | ||
"6.修复避让软键盘关闭无效的bug。\r\n" + | ||
"7.修复其他已知bug。\r\n"+ | ||
"1.支持安卓8.0系统。\r\n" + | ||
"2.收到QQ微信消息时小球会变成好友头像。\r\n" + | ||
"3.添加保存悬浮球横屏位置。\r\n" + | ||
"4.添加空闲半隐藏模式(无操作5秒后悬浮球会隐藏到屏幕边缘,只显示一半)。\r\n"+ | ||
"5.删除开机自启开关,默认开机自启。"+ | ||
"6.提高开机自启速度和后台服务生存能力。"+ | ||
"7.删除弹出权限框时悬浮球自动隐藏的功能。\r\n" + | ||
"8.修复某些情况下悬浮球被其他窗口遮挡的问题。\r\n"+ | ||
"9.修复其他已知bug。\r\n"+ | ||
""); | ||
dialog.show(); | ||
|
||
|
Oops, something went wrong.