pull/90/head^2
parent
baa8b95200
commit
db4f300064
@ -0,0 +1,23 @@ |
|||||||
|
package io.legado.app.ui.book.arrange |
||||||
|
|
||||||
|
import android.os.Bundle |
||||||
|
import androidx.lifecycle.LiveData |
||||||
|
import io.legado.app.R |
||||||
|
import io.legado.app.base.VMBaseActivity |
||||||
|
import io.legado.app.data.entities.Book |
||||||
|
import io.legado.app.utils.getViewModel |
||||||
|
|
||||||
|
|
||||||
|
class ArrangeBookActivity : VMBaseActivity<ArrangeBookViewModel>(R.layout.activity_arrange_book) { |
||||||
|
override val viewModel: ArrangeBookViewModel |
||||||
|
get() = getViewModel(ArrangeBookViewModel::class.java) |
||||||
|
|
||||||
|
private var booksLiveData: LiveData<Book>? = null |
||||||
|
|
||||||
|
override fun onActivityCreated(savedInstanceState: Bundle?) { |
||||||
|
|
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
} |
@ -0,0 +1,9 @@ |
|||||||
|
package io.legado.app.ui.book.arrange |
||||||
|
|
||||||
|
import android.app.Application |
||||||
|
import io.legado.app.base.BaseViewModel |
||||||
|
|
||||||
|
|
||||||
|
class ArrangeBookViewModel(application: Application) : BaseViewModel(application) { |
||||||
|
|
||||||
|
} |
@ -0,0 +1,7 @@ |
|||||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
||||||
|
android:orientation="vertical" |
||||||
|
android:layout_width="match_parent" |
||||||
|
android:layout_height="match_parent"> |
||||||
|
|
||||||
|
</LinearLayout> |
Loading…
Reference in new issue