Oreilly - Kotlin for Android & Java Developers: Clean Code on Android - 9781788994811
Oreilly - Kotlin for Android & Java Developers: Clean Code on Android
by Peter Sommerhoff | Released November 2017 | ISBN: 9781788994811


Become a professional Kotlin developer and write cleaner code in your Android apps than in Java, avoid boilerplate codeAbout This VideoThis course will focus on producing clean code which teaches you to make use of Kotlin's amazing features to actually write better code than in Java.Get a huge benefit using Kotlin instead of Java, e.g. by avoiding boilerplate code around many Android APIs.In DetailKotlin is a modern language for the JVM, and the only officially supported language on Android besides Java. It's developed by JetBrains, the makers of IntelliJ on which Android Studio is based. Since Google's announcement to officially support Kotlin in 2017, interest in the language has radically increased -- and with it the number of tutorials, courses, books, and also job offers for Kotlin. It's a great time to dive into this modern language and get ahead of other Android developers! With its modern language design that incorporates industry best practices, Kotlin allows you to write highly expressive, understandable and safe code -- while being 100% interoperable with Java. You can use any Java classes and methods from Kotlin and the other way around. This course shows you what language features I mean, and how you can apply them in order to write world-class code. Learn to use Kotlin the right way to actually improve your Android app code write null-safe, concise, and readable code in Kotlin using functional and object-oriented concepts workaround unnecessary boilerplate code when using Android APIs (e.g. SQLite) using higher-order extension functions, use Android Studio effectively to speed up your development workflow, get your questions answered along the way should you ever get stuck. Show and hide more Publisher resources Download Example Code
  1. Chapter 1 : Introduction
    • What You'll Learn in this Course 00:04:51
    • Make the Most of this Course! 00:02:44
    • Who's Using Kotlin? 00:02:52
  2. Chapter 2 : Get Ready
    • Introduction 00:01:44
    • Install the Java JDK 8 00:03:12
    • Install Android Studio 00:07:11
    • Set Up a Project in Android Studio 00:12:05
    • Recap 00:00:28
  3. Chapter 3 : Kotlin Basics
    • Introduction 00:01:27
    • Variables and Data Types 00:08:27
    • Null Safety in Kotlin 00:08:56
    • Conditionals: "if" Expressions 00:08:20
    • Conditionals: "when" Expressions 00:08:36
    • Collections 00:09:42
    • "for" Loops 00:05:16
    • "while" Loops 00:03:42
    • Functions 00:06:22
    • Get Ready for Serious Kotlin Coding (Set up IntelliJ IDEA) 00:04:59
    • Create a main() Function 00:02:33
    • Named Arguments & Default Parameter Values 00:05:44
    • Exceptions 00:06:13
    • Why No Checked Exceptions? 00:05:31
    • Recap 00:01:53
  4. Chapter 4 : Functional Programming
    • Introduction 00:01:23
    • What is Functional Programming? 00:03:11
    • Functional Programming II 00:04:15
    • Lambdas & Higher-Order Functions 00:10:06
    • Use map() and flatMap() 00:07:47
    • Use take () and drop() 00:06:28
    • Use zip () 00:04:45
    • Chain Functions Together 00:06:19
    • Lazy Sequences 00:08:17
    • Case Study: Performance of Lazy Sequences 00:08:10
    • Code Along: Infinite Lazy Sequence of All Prime Numbers 00:12:29
    • Use "let" Operator for Scoping and Nullables 00:06:26
    • Use "with" for Many Calls on the Same Object 00:03:55
    • Use "use" for Closeable (like try-with-resources) 00:04:30
    • Inline Functions 00:06:59
    • Recap 00:02:23
  5. Chapter 5 : Object-Orientation in Kotlin
    • Introduction 00:01:59
    • Classes 00:02:27
    • Properties with Getters & Setters 00:06:01
    • Primary and Secondary Constructors 00:08:26
    • Methods 00:03:47
    • Extension Functions 00:06:23
    • Data Classes 00:09:51
    • Enums 00:06:12
    • Inheritance 00:05:21
    • Code Along: Inheritance Example 00:05:57
    • Abstract Classes 00:05:47
    • Interfaces 00:07:18
    • Overriding Rules 00:08:52
    • Smart Casts 00:07:56
    • Visibilities 00:08:48
    • Companion Objects for "Static" Members 00:06:31
    • Object Declarations as Singletons 00:05:09
    • Packages and Imports 00:04:15
    • Generic Classes 00:07:53
    • Generic Functions 00:04:59
    • Covariance 00:07:07
    • Covariance: Java vs Kotlin 00:10:35
    • Covariance vs. Contra variance: "out" and "in" 00:09:44
    • Recap 00:01:47
  6. Chapter 6 : Kotlin for Android – Fundamentals
    • Introduction 00:02:50
    • Create the App Project 00:04:52
    • Understand the Android Versions 00:03:08
    • Create a CardView Layout and Add UI Elements 00:09:44
    • Use the "Kotlin Android Extensions" 00:08:55
    • Challenge Solution 00:03:31
  7. Chapter 7 : Kotlin for Android -- Implement a RecyclerView
    • Introduction 00:01:01
    • What is a RecyclerView? 00:05:17
    • Create the Data Class "Habit" 00:04:22
    • Implement the "HabitsAdapter" - Part I 00:05:01
    • Implement the "HabitsAdapter" - Part II 00:03:36
    • Implement the "HabitsAdapter" - Part III 00:09:44
  8. Chapter 8 : Kotlin for Android -- Let Users Create Habits
    • Introduction 00:01:36
    • Add a Menu 00:01:57
    • Add a Second Activity 00:03:10
    • Use Intents to Switch Activities 00:07:14
    • Challenge Solution 00:08:01
    • Let Users Choose an Image 00:06:44
    • Get the Selected Image Back (onActivityResult) 00:08:11
    • Show Error Messages to the User 00:07:39
    • Code Along: An Extension Function for "EditText" 00:03:43
  9. Chapter 9 : Kotlin for Android -- Use SQLite the Kotlin Way!
    • Introduction 00:01:11
    • Introducing SQLite 00:01:28
    • Define the Contracts 00:04:14
    • Implement the Database Helper 00:06:32
    • Store a Habit to SQLite 00:08:03
    • Implementing Secure Transactions (that support Rollback) 00:04:09
    • Clean Code: Improving Transactions in Kotlin 00:06:51
    • Clean Code: Further Improving Transactions and Performance 00:06:33
    • Store the Habit in "CreateHabitActivity" 00:09:23
    • Read All Habits from SQLite 00:09:01
    • Challenge Solution 00:04:27
    • Challenge Solution 00:07:58
    • Add Files to the Virtual Device (Excursus) 00:01:43
  10. Show and hide more

    Oreilly - Kotlin for Android & Java Developers: Clean Code on Android


 TO MAC USERS: If RAR password doesn't work, use this archive program: 

RAR Expander 0.8.5 Beta 4  and extract password protected files without error.


 TO WIN USERS: If RAR password doesn't work, use this archive program: 

Latest Winrar  and extract password protected files without error.


 Coktum   |  

Information
Members of Guests cannot leave comments.


SermonBox - Seasonal Collection

SermonBox - The Series Pack Collection

Top Rated News

  • Christmas Material
  • Laser Cut & Print Design Elements Bundle - ETSY
  • Daz3D - All Materials - SKU 37000-37999
  • Cgaxis - All Product - 2019 - All Retail! - UPDATED!!!
  • DigitalXModels Full Collections
  • Rampant Design Tools Full Collections Total: $4400
  • FilmLooks.Com Full Collection
  • All PixelSquid Product
  • The Pixel Lab Collection
  • Envato Elements Full Sources- 3200+ Files
  • Ui8.NET Full Sources
  • The History of The 20th Century
  • The Dover Collections
  • Snake Interiors Collections
  • Inspirational Collections
  • Veer Fancy Collections
  • All Ojo Images
  • All ZZVE Collections
  • All Sozaijiten Collections
  • All Image Broker Collections
  • Shuterstock Bundle Collections
  • Tattoo Collections
  • Blend Images Collections
  • Authors Tuorism Collections
  • Motion Mile - Big Bundle
  • PhotoBacks - All Product - 2018
  • Dekes Techniques - Photoshop & Illustrator Course - 1 to 673
Telegram GFXTRA Group
Udemy - Turkce Gorsel Ogrenme Setleri - Part 2
Videohive Wow Pack Series


rss