This repository has been archived by the owner on Oct 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 69
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
1 parent
cdcc11b
commit 23f8336
Showing
8 changed files
with
49 additions
and
13 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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
* 1、修复部分机型阅读界面切换日夜间闪退的问题 | ||
* 2、优化搜索界面 | ||
* 3、搜索界面新增书架书籍搜索 | ||
* 4、修复朗读到章节最后一页停止的问题 | ||
* 4、修复朗读到章节最后一页停止的问题 | ||
* 5、新增QQ频道,建议反馈请到QQ频道进行 |
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 |
---|---|---|
|
@@ -5,6 +5,7 @@ | |
2、优化搜索界面 | ||
3、搜索界面新增书架书籍搜索 | ||
4、修复朗读到章节最后一页停止的问题 | ||
5、新增QQ频道,建议反馈请到QQ频道进行 | ||
|
||
2021.12.11 | ||
风月读书v2.2.8 | ||
|
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 |
---|---|---|
|
@@ -96,6 +96,12 @@ protected void initClick() { | |
mClipboardManager.setPrimaryClip(mClipData); | ||
ToastUtils.showSuccess("邮箱\"[email protected]\"已复制到剪切板"); | ||
}); | ||
binding.il.rlJoinQqChannel.setOnClickListener(v -> { | ||
Intent intent = new Intent(Intent.ACTION_VIEW); | ||
intent.setData(Uri.parse("https://qun.qq.com/qqweb/qunpro/share?_wv=3&_wwv=128&inviteCode=2aP6ZQ&from=246610&biz=ka")); | ||
startActivity(intent); | ||
}); | ||
|
||
binding.il.rlShareLog.setOnClickListener(v -> DialogCreator.createCommonDialog(this, "分享崩溃日志", | ||
"你是希望将日志上传到服务器,还是直接分享给他人?", true, | ||
"上传服务器", "直接分享", (dialog, which) -> uploadCrashLog(), (dialog, which) -> shareCrashLog())); | ||
|
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
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