Kotlin Programming Cookbook
eBook - ePub

Kotlin Programming Cookbook

Aanand Shekhar Roy, Rashi Karanpuria, Mitchell Wong Ho

Share book
  1. 434 pages
  2. English
  3. ePUB (mobile friendly)
  4. Available on iOS & Android
eBook - ePub

Kotlin Programming Cookbook

Aanand Shekhar Roy, Rashi Karanpuria, Mitchell Wong Ho

Book details
Book preview
Table of contents
Citations

About This Book

Discover Android programming and web development by understanding the concepts of Kotlin ProgrammingAbout This Bookā€¢ Practical solutions to your common programming problems with Kotlin 1.1ā€¢ Leverage the functional power of Kotlin to ease your Android application developmentā€¢ Learn to use Java code in conjunction with Kotlin Who This Book Is ForThis book will appeal to Kotlin developers keen to find solutions for their common programming problems. Java programming knowledge would be an added advantage.What You Will Learnā€¢ Understand the basics and object-oriented concepts of Kotlin Programmingā€¢ Explore the full potential of collection frameworks in Kotlinā€¢ Work with SQLite databases in Android, make network calls, and fetch data over a networkā€¢ Use Kotlin's Anko library for efficient and quick Android developmentā€¢ Uncover some of the best features of Kotlin: Lambdas and Delegatesā€¢ Set up web service development environments, write servlets, and build RESTful services with Kotlinā€¢ Learn how to write unit tests, integration tests, and instrumentation/acceptance tests.In DetailThe Android team has announced first-class support for Kotlin 1.1. This acts as an added boost to the language and more and more developers are now looking at Kotlin for their application development. This recipe-based book will be your guide to learning the Kotlin programming language. The recipes in this book build from simple language concepts to more complex applications of the language. After the fundamentals of the language, you will learn how to apply the object-oriented programming features of Kotlin 1.1. Programming with Lambdas will show you how to use the functional power of Kotlin. This book has recipes that will get you started with Android programming with Kotlin 1.1, providing quick solutions to common problems encountered during Android app development. You will also be taken through recipes that will teach you microservice and concurrent programming with Kotlin. Going forward, you will learn to test and secure your applications with Kotlin. Finally, this book supplies recipes that will help you migrate your Java code to Kotlin and will help ensure that it's interoperable with Java.Style and approachThis book explains concepts related to Kotlin Programming using a practical approach and with the help of easy-to-follow recipes.

Frequently asked questions

How do I cancel my subscription?
Simply head over to the account section in settings and click on ā€œCancel Subscriptionā€ - itā€™s as simple as that. After you cancel, your membership will stay active for the remainder of the time youā€™ve paid for. Learn more here.
Can/how do I download books?
At the moment all of our mobile-responsive ePub books are available to download via the app. Most of our PDFs are also available to download and we're working on making the final remaining ones downloadable now. Learn more here.
What is the difference between the pricing plans?
Both plans give you full access to the library and all of Perlegoā€™s features. The only differences are the price and subscription period: With the annual plan youā€™ll save around 30% compared to 12 months on the monthly plan.
What is Perlego?
We are an online textbook subscription service, where you can get access to an entire online library for less than the price of a single book per month. With over 1 million books across 1000+ topics, weā€™ve got you covered! Learn more here.
Do you support text-to-speech?
Look out for the read-aloud symbol on your next book to see if you can listen to it. The read-aloud tool reads text aloud for you, highlighting the text as it is being read. You can pause it, speed it up and slow it down. Learn more here.
Is Kotlin Programming Cookbook an online PDF/ePUB?
Yes, you can access Kotlin Programming Cookbook by Aanand Shekhar Roy, Rashi Karanpuria, Mitchell Wong Ho in PDF and/or ePUB format, as well as other popular books in Informatica & Programmazione in Java. We have over one million books available in our catalogue for you to explore.

Information

Year
2018
ISBN
9781788475211

Anko Commons and Extension Function

The following recipes will be covered in this chapter:
  • Setting up Anko with Gradle
  • Extending Android framework using extension function
  • Using extensions as properties
  • Using intents with Anko
  • Making a call intent using Anko
  • Sending a text intent using Anko
  • Browsing the web browser using Anko
  • Sharing some text using intents in Anko
  • Sending an email using Anko
  • Creating Android dialogs with Anko
  • Showing an alert dialog with a list of text items
  • Using Anko in Views
  • Logging using Anko
  • Handling dimensions with Anko
  • Version checking in Android

Introduction

Anko is a Kotlin library that was developed to make the Android development experience better. Kotlin itself makes Android development easier, and Anko is a cherry on top of it. With helpers for almost all common Android functionalities, Anko drastically reduces the amount of code you write and makes Android development fun.
Anko consists of several parts:
  • Anko Commons: It consists of helper methods for intents, dialogs, logging, and so on, which reduces the amount of code significantly.
  • Anko Layouts: With this library, you don't have to stick to conventional XML to create visual interfaces. Anko layout is a fast and type-safe way to write dynamic Android layouts.
  • Anko SQLite: This is a query DSL and parser collection for Android SQLite, which makes working with underlying SQLite database substantially easy.
  • Anko Coroutines: Coroutines are a great way to do asynchronous programming. Anko coroutines provide utilities based on the kotlinx.coroutines ( https://github.com/Kotlin/kotlinx.coroutines) library.
In this chapter, we will learn how to use Anko for Android development. So let's get started!

Setting up Anko with Gradle

We will begin by setting up the Anko library in our project. We will be using Gradle to handle the dependencies of the project.

Getting ready

I'll be using Android Studio to write code. You can also find the source code in the 1-setting-up-anko-with-gradle branch of repository at https://gitlab.com/aanandshekharroy/Anko-examples.

How to do itā€¦

Follow these steps to add Anko to your project using the Gradle build system:
  1. The easiest way to set up Anko with Gradle is do it by adding the following lines in your build.gradle file:
 compile "org.jetbrains.anko:anko:$anko_version"
  1. You can replace $anko_version with the latest version of Anko, which is 0.10.1 when this book was written.
  2. The preceding compile statement will add all available features (including Commons, Layouts, SQLite) into your project at once. If you don't want that, and would prefer adding them separately as needed, here are the compile statements:
  • anko-commons: This library contains a lot of helpers for Android SDK for Intents, Dialogs and Toasts, Logging, and Resource and Dimension:
 compile "org.jetbrains.anko:anko-commons:$anko_version"
  • Anko Layouts: Anko Layouts is a DSL for writing dynamic Android layouts:
compile "org.jetbrains.anko:anko-sdk25:$anko_version" // sdk15,19,21,23 are also available compile "org.jetbrains.anko:anko-appcompat-v7:$anko_version"
  • anko-sqlite: This provides helpers for working with SQLite database:
compile "org.jetbrains.anko:anko-sqlite:$anko_version"
  • anko-coroutines: This library makes it easier to work with Kotlin coroutines:
compile "org.jetbrains.anko:anko-coroutines:$anko_version"

Extending Android framework using extension function

The heading of this recipe might seem very confusing to you as you might be thinking "How can I extend the super complex Android framework? And moreover, why should I?" We will be dealing with all the "what, why, and hows" of extension functions in this recipe. Extension functions are one of the greatest features of Kotlin. So let's dive into it.
2323__perlego...

Table of contents