You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
544 B
23 lines
544 B
package com.project.survey.ui
|
|
|
|
import android.content.Intent
|
|
import com.project.survey.databinding.ActivitySplashBinding
|
|
import com.project.survey.ui.base.BaseBindingActivity
|
|
|
|
/**
|
|
* 启动页
|
|
*/
|
|
class SplashActivity : BaseBindingActivity<ActivitySplashBinding>() {
|
|
|
|
override fun getBinding(): ActivitySplashBinding {
|
|
return ActivitySplashBinding.inflate(layoutInflater)
|
|
}
|
|
|
|
override fun initView() {
|
|
startActivity(Intent(this, MainActivity::class.java))
|
|
finish()
|
|
}
|
|
|
|
override fun initData() {
|
|
}
|
|
} |