January 2019
Intermediate to advanced
392 pages
10h 11m
English
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)!! }}
Read now
Unlock full access