Kotlin Programming Cookbook
eBook - ePub

Kotlin Programming Cookbook

Aanand Shekhar Roy, Rashi Karanpuria, Mitchell Wong Ho

Condividi libro
  1. 434 pagine
  2. English
  3. ePUB (disponibile sull'app)
  4. Disponibile su iOS e Android
eBook - ePub

Kotlin Programming Cookbook

Aanand Shekhar Roy, Rashi Karanpuria, Mitchell Wong Ho

Dettagli del libro
Anteprima del libro
Indice dei contenuti
Citazioni

Informazioni sul libro

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.

Domande frequenti

Come faccio ad annullare l'abbonamento?
È semplicissimo: basta accedere alla sezione Account nelle Impostazioni e cliccare su "Annulla abbonamento". Dopo la cancellazione, l'abbonamento rimarrà attivo per il periodo rimanente già pagato. Per maggiori informazioni, clicca qui
È possibile scaricare libri? Se sì, come?
Al momento è possibile scaricare tramite l'app tutti i nostri libri ePub mobile-friendly. Anche la maggior parte dei nostri PDF è scaricabile e stiamo lavorando per rendere disponibile quanto prima il download di tutti gli altri file. Per maggiori informazioni, clicca qui
Che differenza c'è tra i piani?
Entrambi i piani ti danno accesso illimitato alla libreria e a tutte le funzionalità di Perlego. Le uniche differenze sono il prezzo e il periodo di abbonamento: con il piano annuale risparmierai circa il 30% rispetto a 12 rate con quello mensile.
Cos'è Perlego?
Perlego è un servizio di abbonamento a testi accademici, che ti permette di accedere a un'intera libreria online a un prezzo inferiore rispetto a quello che pagheresti per acquistare un singolo libro al mese. Con oltre 1 milione di testi suddivisi in più di 1.000 categorie, troverai sicuramente ciò che fa per te! Per maggiori informazioni, clicca qui.
Perlego supporta la sintesi vocale?
Cerca l'icona Sintesi vocale nel prossimo libro che leggerai per verificare se è possibile riprodurre l'audio. Questo strumento permette di leggere il testo a voce alta, evidenziandolo man mano che la lettura procede. Puoi aumentare o diminuire la velocità della sintesi vocale, oppure sospendere la riproduzione. Per maggiori informazioni, clicca qui.
Kotlin Programming Cookbook è disponibile online in formato PDF/ePub?
Sì, puoi accedere a Kotlin Programming Cookbook di Aanand Shekhar Roy, Rashi Karanpuria, Mitchell Wong Ho in formato PDF e/o ePub, così come ad altri libri molto apprezzati nelle sezioni relative a Informatica e Programmazione in Java. Scopri oltre 1 milione di libri disponibili nel nostro catalogo.

Informazioni

Anno
2018
ISBN
9781788475211
Edizione
1
Argomento
Informatica

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...

Indice dei contenuti