-
😊 I’m currently learning Software Engineering
-
🌱 I'm 3rd-year student at University of Transport and Communications campus in HCMC
-
🌏 I'm living now in Ho Chi Minh Province, Viet Nam
-
📫 How to reach me phamquockhanh.dev@gmail.com
class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
val textView: TextView = findViewById(R.id.textView)
textView.text = "If you're tired, learn to rest, not to quit."
textView.textSize = 20f
textView.setTypeface(null, android.graphics.Typeface.BOLD)
}
}