上海工程测量
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

package com.project.survey.ui
10 months ago
10 months ago
import android.content.Intent
import com.project.survey.databinding.ActivitySplashBinding
9 months ago
import com.project.survey.ui.base.BaseBindingActivity
10 months ago
10 months ago
/**
* 启动页
*/
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() {
}
10 months ago
}