24 lines
780 B
Kotlin
24 lines
780 B
Kotlin
package com.gh.gamecenter
|
|
|
|
import android.content.Context
|
|
import android.content.Intent
|
|
import android.os.Bundle
|
|
import com.gh.gamecenter.common.base.activity.ToolBarActivity
|
|
import com.gh.gamecenter.common.utils.updateStatusBarColor
|
|
import com.halo.assistant.fragment.user.VerifyPhoneFragment
|
|
|
|
class VerifyPhoneActivity : ToolBarActivity() {
|
|
|
|
override fun onCreate(savedInstanceState: Bundle?) {
|
|
super.onCreate(savedInstanceState)
|
|
updateStatusBarColor(R.color.ui_surface, R.color.ui_surface)
|
|
}
|
|
|
|
override fun isAutoResetViewBackgroundEnabled() = true
|
|
|
|
companion object {
|
|
fun getIntent(context: Context): Intent {
|
|
return getTargetIntent(context, VerifyPhoneActivity::class.java, VerifyPhoneFragment::class.java)
|
|
}
|
|
}
|
|
} |