Modifying a profile activity

Create a new activity called ProfileActivity.kt, and here is the code:

class ProfileActivity : AppCompatActivity() {

private var username: String = ""
private var password: String = ""

override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_profile)
setTitleName()

username = PrefUtils.getUsername(this)!!
password = PrefUtils.getPassword(this)!!
}
}
..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
18.117.93.0