This commit is contained in:
GKF 2019-06-04 15:20:27 +08:00
parent fde31cd942
commit c909f0b49f
6 changed files with 13 additions and 8 deletions

View File

@ -31,10 +31,10 @@ class MainActivity : BaseActivity<MainViewModel>(), BottomNavigationView.OnNavig
get() = R.layout.activity_main
override fun onViewModelCreated(viewModel: MainViewModel, savedInstanceState: Bundle?) {
mFragmentList.add(BookshelfFragment(R.layout.fragment_bookshelf))
mFragmentList.add(FindBookFragment(R.layout.fragment_find_book))
mFragmentList.add(BookSourceFragment(R.layout.fragment_book_source))
mFragmentList.add(MyConfigFragment(R.layout.fragment_my_config))
mFragmentList.add(BookshelfFragment())
mFragmentList.add(FindBookFragment())
mFragmentList.add(BookSourceFragment())
mFragmentList.add(MyConfigFragment())
view_pager_main.adapter =
TabFragmentPageAdapter(supportFragmentManager, FragmentPagerAdapter.BEHAVIOR_RESUME_ONLY_CURRENT_FRAGMENT)
view_pager_main.addOnPageChangeListener(this)

View File

@ -3,8 +3,9 @@ package io.legado.app.ui.main.bookshelf
import android.os.Bundle
import android.view.View
import androidx.fragment.app.Fragment
import io.legado.app.R
class BookshelfFragment(contentLayoutId: Int) : Fragment(contentLayoutId) {
class BookshelfFragment : Fragment(R.layout.fragment_bookshelf) {
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
super.onViewCreated(view, savedInstanceState)

View File

@ -3,8 +3,9 @@ package io.legado.app.ui.main.booksource
import android.os.Bundle
import android.view.View
import androidx.fragment.app.Fragment
import io.legado.app.R
class BookSourceFragment(contentLayoutId: Int) : Fragment(contentLayoutId) {
class BookSourceFragment : Fragment(R.layout.fragment_book_source) {
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
super.onViewCreated(view, savedInstanceState)

View File

@ -3,8 +3,9 @@ package io.legado.app.ui.main.findbook
import android.os.Bundle
import android.view.View
import androidx.fragment.app.Fragment
import io.legado.app.R
class FindBookFragment(contentLayoutId: Int) : Fragment(contentLayoutId) {
class FindBookFragment : Fragment(R.layout.fragment_find_book) {
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
super.onViewCreated(view, savedInstanceState)

View File

@ -3,8 +3,9 @@ package io.legado.app.ui.main.myconfig
import android.os.Bundle
import android.view.View
import androidx.fragment.app.Fragment
import io.legado.app.R
class MyConfigFragment(contentLayoutId: Int) : Fragment(contentLayoutId) {
class MyConfigFragment : Fragment(R.layout.fragment_my_config) {
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
super.onViewCreated(view, savedInstanceState)

View File

@ -12,4 +12,5 @@
app:layout_constraintTop_toTopOf="parent"
app:title="我的"/>
</LinearLayout>