|
@@ -1,6 +1,7 @@
|
|
|
package com.wdkl.ncs.android.component.hello.activity
|
|
|
|
|
|
import android.app.Activity
|
|
|
+import android.graphics.Color
|
|
|
import android.os.Bundle
|
|
|
import com.enation.javashop.android.jrouter.external.annotation.Router
|
|
|
import com.enation.javashop.net.engine.model.NetState
|
|
@@ -9,6 +10,7 @@ import com.wdkl.ncs.android.component.hello.databinding.HelloActLayBinding
|
|
|
import com.wdkl.ncs.android.component.hello.launch.HelloLaunch
|
|
|
import com.wdkl.ncs.android.lib.base.BaseActivity
|
|
|
import com.wdkl.ncs.android.lib.base.BaseContract
|
|
|
+import com.wdkl.ncs.android.lib.utils.AppTool
|
|
|
import com.wdkl.ncs.android.middleware.logic.contract.hello.HelloActivityContract
|
|
|
import com.wdkl.ncs.android.middleware.logic.presenter.hello.HelloActivityPresenter
|
|
|
|
|
@@ -23,30 +25,25 @@ class HelloActivity : BaseActivity<HelloActivityPresenter, HelloActLayBinding>()
|
|
|
}
|
|
|
|
|
|
override fun init() {
|
|
|
- TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
|
|
+ AppTool.SystemUI.showNavigationBar(this,false)
|
|
|
+ AppTool.SystemUI.ImmersiveWithBottomBarColor(this, Color.BLACK)
|
|
|
}
|
|
|
|
|
|
override fun bindEvent() {
|
|
|
- TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
|
|
}
|
|
|
|
|
|
override fun destory() {
|
|
|
- TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
|
|
}
|
|
|
|
|
|
override fun onError(message: String, type: Int) {
|
|
|
- TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
|
|
}
|
|
|
|
|
|
override fun complete(message: String, type: Int) {
|
|
|
- TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
|
|
}
|
|
|
|
|
|
override fun start() {
|
|
|
- TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
|
|
}
|
|
|
|
|
|
override fun networkMonitor(state: NetState) {
|
|
|
- TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
|
|
}
|
|
|
}
|