pull/90/head^2
kunfei 5 years ago
parent fec631fecf
commit 705c38cd09
  1. 7
      app/src/main/java/io/legado/app/model/webBook/BookChapterList.kt
  2. 10
      app/src/main/java/io/legado/app/ui/book/arrange/ArrangeBookActivity.kt

@ -100,11 +100,8 @@ object BookChapterList {
item.index = index
}
book.latestChapterTitle = chapterList.last().title
if (book.durChapterIndex < chapterList.size) {
book.durChapterTitle = chapterList[book.durChapterIndex].title
} else {
book.durChapterTitle = book.latestChapterTitle
}
book.durChapterTitle =
chapterList.getOrNull(book.durChapterIndex)?.title ?: book.latestChapterTitle
if (book.totalChapterNum < chapterList.size) {
book.lastCheckCount = chapterList.size - book.totalChapterNum
}

@ -20,8 +20,9 @@ class ArrangeBookActivity : VMBaseActivity<ArrangeBookViewModel>(R.layout.activi
ArrangeBookAdapter.CallBack {
override val viewModel: ArrangeBookViewModel
get() = getViewModel(ArrangeBookViewModel::class.java)
override val groupList: List<BookGroup> = arrayListOf()
override val groupList: ArrayList<BookGroup> = arrayListOf()
private lateinit var adapter: ArrangeBookAdapter
private var groupLiveData: LiveData<List<BookGroup>>? = null
private var booksLiveData: LiveData<List<Book>>? = null
override fun onActivityCreated(savedInstanceState: Bundle?) {
@ -49,6 +50,13 @@ class ArrangeBookActivity : VMBaseActivity<ArrangeBookViewModel>(R.layout.activi
}
private fun initData() {
groupLiveData?.removeObservers(this)
groupLiveData = App.db.bookGroupDao().liveDataAll()
groupLiveData?.observe(this, Observer {
groupList.clear()
groupList.addAll(it)
adapter.notifyDataSetChanged()
})
booksLiveData?.removeObservers(this)
booksLiveData = App.db.bookDao().observeAll()
booksLiveData?.observe(this, Observer {

Loading…
Cancel
Save