优化代码

pull/743/head
gedoor 4 years ago
parent 57fb85036d
commit dac6ca99cb
  1. 3
      app/src/main/assets/updateLog.md
  2. 2
      app/src/main/java/io/legado/app/ui/book/read/page/ContentTextView.kt
  3. 2
      app/src/main/res/xml/pref_config_read.xml

@ -3,6 +3,9 @@
* 关注合作公众号 **[小说拾遗]** 获取好看的小说。
* 旧版数据导入教程:先在旧版阅读(2.x)中进行备份,然后在新版阅读(3.x)【我的】->【备份与恢复】,选择【导入旧版本数据】。
**2020/12/19**
* 书签转移到文本菜单里,会记录选择的文本和位置
**2020/12/17**
* 继续修复bug

@ -30,7 +30,7 @@ import kotlin.math.min
* 阅读内容界面
*/
class ContentTextView(context: Context, attrs: AttributeSet?) : View(context, attrs) {
var selectAble = context.getPrefBoolean(PreferKey.textSelectAble)
var selectAble = context.getPrefBoolean(PreferKey.textSelectAble, true)
var upView: ((TextPage) -> Unit)? = null
private val selectedPaint by lazy {
Paint().apply {

@ -77,7 +77,7 @@
app:isBottomBackground="true" />
<io.legado.app.ui.widget.prefs.SwitchPreference
android:defaultValue="false"
android:defaultValue="true"
android:title="@string/selectText"
android:key="selectText"
app:iconSpaceReserved="false"

Loading…
Cancel
Save