Learn More →
Sources: Text Tutorial Espresso Course Main Android Terms An activity is one screen of an app. In that way the activity is very similar to a window in the Windows operating system. The most specific block of the user interface is the activity. An Android app contains activities, meaning one or more screens. Examples: Login screen, sign up screen, and home screen. An activity in Android is a specific combination of XML files and JAVA files. It is basically a container that contains the design as well as coding stuff.
Jun 8, 2023Udemy Course Blog Kotlin features Static Typing: Like Java, variables can only be assigned values that match their type. var m : Int = 12 m = 10 // ok m = "twelve" // error!
May 31, 2023Useful things Create a list from range list = [x for x in range(5,100,2)] // (begining, end, step) print(list) Create a dictionairy from 2 lists list = [x for x in range(5,20,2)] listB = ["apple", "banana", "pear"]
May 29, 2023devops docker aws
Sep 26, 2021or
By clicking below, you agree to our terms of service.
New to HackMD? Sign up