Kotlin Programming Cookbook
eBook - ePub

Kotlin Programming Cookbook

Aanand Shekhar Roy, Rashi Karanpuria, Mitchell Wong Ho

Compartir libro
  1. 434 páginas
  2. English
  3. ePUB (apto para móviles)
  4. Disponible en iOS y Android
eBook - ePub

Kotlin Programming Cookbook

Aanand Shekhar Roy, Rashi Karanpuria, Mitchell Wong Ho

Detalles del libro
Vista previa del libro
Índice
Citas

Información del 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.

Preguntas frecuentes

¿Cómo cancelo mi suscripción?
Simplemente, dirígete a la sección ajustes de la cuenta y haz clic en «Cancelar suscripción». Así de sencillo. Después de cancelar tu suscripción, esta permanecerá activa el tiempo restante que hayas pagado. Obtén más información aquí.
¿Cómo descargo los libros?
Por el momento, todos nuestros libros ePub adaptables a dispositivos móviles se pueden descargar a través de la aplicación. La mayor parte de nuestros PDF también se puede descargar y ya estamos trabajando para que el resto también sea descargable. Obtén más información aquí.
¿En qué se diferencian los planes de precios?
Ambos planes te permiten acceder por completo a la biblioteca y a todas las funciones de Perlego. Las únicas diferencias son el precio y el período de suscripción: con el plan anual ahorrarás en torno a un 30 % en comparación con 12 meses de un plan mensual.
¿Qué es Perlego?
Somos un servicio de suscripción de libros de texto en línea que te permite acceder a toda una biblioteca en línea por menos de lo que cuesta un libro al mes. Con más de un millón de libros sobre más de 1000 categorías, ¡tenemos todo lo que necesitas! Obtén más información aquí.
¿Perlego ofrece la función de texto a voz?
Busca el símbolo de lectura en voz alta en tu próximo libro para ver si puedes escucharlo. La herramienta de lectura en voz alta lee el texto en voz alta por ti, resaltando el texto a medida que se lee. Puedes pausarla, acelerarla y ralentizarla. Obtén más información aquí.
¿Es Kotlin Programming Cookbook un PDF/ePUB en línea?
Sí, puedes acceder a Kotlin Programming Cookbook de Aanand Shekhar Roy, Rashi Karanpuria, Mitchell Wong Ho en formato PDF o ePUB, así como a otros libros populares de Informatica y Programmazione in Java. Tenemos más de un millón de libros disponibles en nuestro catálogo para que explores.

Información

Año
2018
ISBN
9781788475211
Edición
1
Categoría
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...

Índice