Android_Kotlin Flashcards
Creating Virtual Device
- Phone - options
- Select - with/without Play store (icon)
- Select API
- Press Play!
Details & Advanced options
Right side - panel. On the AVD
.kt
stands for Kotlin
Start of program?
MainActivity
User functions?
Called by ourself
Packages define
Adding outside Code - to our project
AppCompatActivity
Contains lots of Code - to reuse.
Makes sure App works nicely on different devices
onCreate
Comes from Bundle package
When does the GUI start showing?
setContentView(R.layout.activity_main)
R stands for?
Resources
Layout?
Layout - folder
What displays on the Screen?
activity_main
Declared Attributes?
Left side
SP (units) defined?
Scaled Independent Pixels
Scale to size of Screen
Gradle building
Compiling code into App
View is not constrained, fix?
Item (GUI) needs to relate to other elements. Else forced to (0,0) cordinates
R.id
Reference to the element by Id
Simple button click Example
val buttonMe = findViewById(R.id.button) as Button
Element that needs to be Imported
Right click - Import Widget
How to acquire element data
findViewById( )
Button onclick listener
.setOnClickListener( )
Small text at bottom (Toast Widget)
toast.makeText(context: this@MainActivity, text: “Hello”, Toast.LENGTH_SHORT)
Text view
findViewById(R.id.textView) as TextView