简体   繁体   English

Kotlin Android MVP + Dagger 2 lateinit属性演示者尚未初始化

[英]Kotlin Android MVP + Dagger 2 lateinit property presenter has not been initialized

Trying to use Dagger with Kotlin on Android. 尝试在Android上将Dagger与Kotlin结合使用。 And got the exception: 并得到了例外:

Caused by: kotlin.UninitializedPropertyAccessException: lateinit property presenter has not been initialized
    at com.ad.eartquakekotlin.main.MainFragment.onViewCreated(MainFragment.kt:43)
    at androidx.fragment.app.FragmentManagerImpl.moveToState(FragmentManager.java:1471)
    at androidx.fragment.app.FragmentManagerImpl.moveFragmentToExpectedState(FragmentManager.java:1784)
    at androidx.fragment.app.FragmentManagerImpl.moveToState(FragmentManager.java:1852)
    at androidx.fragment.app.BackStackRecord.executeOps(BackStackRecord.java:802)
    at ...

The app is special for testing. 该应用程序专用于测试。 I get earthquakes and show them on a device screen. 我收到地震并在设备屏幕上显示。

All I want is 1. Inject the presenter in my Fragment (View) 2. Inject the api in my presenter 我只需要1.将演示者插入到我的Fragment(视图)中2.将api插入到演示者中

There is the structure of my project: 我的项目有以下结构:

在此处输入图片说明

There are two modules and components there, as you can see: 如您所见,那里有两个模块和组件:

@Module
class ApplicationModule(private val application: Application) {
    @Provides
    @Singleton
    fun provideApplication():Application = application
}

@Module
class MainModule (private val view: MainContract.View) {
    @Provides
    fun provideView(): MainContract.View {
        return view
    }

    @Provides
    fun providePresenter(): MainContract.Presenter {
        return MainPresenter(view)
    }
}

And components: 和组件:

@Component(modules = [ApplicationModule::class])
interface ApplicationComponent {
    fun inject(application: Application)
    fun plus (mainModule: MainModule) : MainComponent
}

and

@Subcomponent(modules = [MainModule::class])
interface MainComponent {
    fun inject (view : MainContract.View)
}

There is a contract: 有合同:

interface MainContract {
interface View {
    fun showLoading()
    fun hideLoading()
    fun showMessage(message: String)
    fun showData(data: EarthquakeRootObject)

}
interface Presenter {
    fun onDestroy()
    fun loadData()
}
}

Application class: 应用类别:

class MainApp: Application() {

companion object {
    lateinit var graph: ApplicationComponent
}

override fun onCreate() {
    super.onCreate()
    buildGraph()
}

private fun buildGraph() {
    graph = DaggerApplicationComponent
            .builder()
            .applicationModule(ApplicationModule(this))
            .build()
}
}

Fragment (where I want to use Injection) 片段(我要在其中使用注入)

class MainFragment : Fragment(), MainContract.View {

private lateinit var earthquakesAdapter: EarthquakeRecyclerViewAdapter
private lateinit var earthquakes: EarthquakeRootObject
@Inject lateinit var presenter: MainContract.Presenter

override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?,
                          savedInstanceState: Bundle?): View? {
    return container?.inflate(R.layout.fragment_main)
}

override fun onAttach(context: Context?) {
    super.onAttach(context)
    MainApp.graph.plus(MainModule(this)).inject(this)
}

override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
    super.onViewCreated(view, savedInstanceState)

    earthquakesRecyclerView.layoutManager = LinearLayoutManager(context)
    earthquakesRecyclerView.setHasFixedSize(true)

    presenter.loadData()
}

And my presenter 还有我的主持人

class MainPresenter (var view: MainContract.View?) : MainContract.Presenter {

private var disposable: Disposable? = null
@Inject lateinit var api : EarthquakeApi

override fun onDestroy() {
    disposable?.dispose()
    view = null
}

override fun loadData() {
    view?.showLoading()

    disposable = api.getEarthquakes()
            .subscribeOn(Schedulers.io())
            .observeOn(AndroidSchedulers.mainThread())
            .subscribe(
                    {
                        response ->
                        view?.showData(response)
                        view?.hideLoading()
                    },
                    {
                        throwable ->
                        view?.showMessage(throwable.message ?: "Ошибка")
                        view?.hideLoading()
                    }
            )
}

What do I do wrong? 我做错了什么?

You need to replace 您需要更换

fun inject (view : MainContract.View)

with

fun inject(target : MainFragment)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM