• Complain

Trebilcox-Ruiz - Android TV apps development: building for media and games

Here you can read online Trebilcox-Ruiz - Android TV apps development: building for media and games full text of the book (entire story) in english for free. Download pdf and epub, get meaning, cover and reviews about this ebook. City: Berkeley;California, year: 2016, publisher: Apress, genre: Computer. Description of the work, (preface) as well as reviews are available. Best literature library LitArk.com created for fans of good reading and offers a wide selection of genres:

Romance novel Science fiction Adventure Detective Science History Home and family Prose Art Politics Computer Non-fiction Religion Business Children Humor

Choose a favorite category and find really read worthwhile books. Enjoy immersion in the world of imagination, feel the emotions of the characters or learn something new for yourself, make an fascinating discovery.

Trebilcox-Ruiz Android TV apps development: building for media and games
  • Book:
    Android TV apps development: building for media and games
  • Author:
  • Publisher:
    Apress
  • Genre:
  • Year:
    2016
  • City:
    Berkeley;California
  • Rating:
    5 / 5
  • Favourites:
    Add to favourites
  • Your mark:
    • 100
    • 1
    • 2
    • 3
    • 4
    • 5

Android TV apps development: building for media and games: summary, description and annotation

We offer to read an annotation, description, summary or preface (depends on what the author of the book "Android TV apps development: building for media and games" wrote himself). If you haven't found the necessary information about the book — write in the comments, we will try to find it.

Android TV Apps Development: Building Media and Games walks you through creating fantastic entertainment applications for one of the newest Android platforms. This book will demystify some of the newest APIs and present the tools necessary for building applications that run on Android TV. Walking through example applications, you will learn the vocabulary necessary to solve real world problems and how to present your content on the television through Android. In addition to practical code examples, you will learn about various design considerations that will make using your apps an enjoyable experience for users. What youll learn: How to design for Android TV How to create a media app for Android TV What are the game design/development considerations for Android TV How to distribute Android TV apps.;1. Android TV Fundamentals -- 2. Designing for TV -- 3. Creating a Media Application -- 4. Game Considerations -- 5. Distributing Android TV Applications.

Trebilcox-Ruiz: author's other books


Who wrote Android TV apps development: building for media and games? Find out the surname, the name of the author of the book and a list of all author's works by series.

Android TV apps development: building for media and games — read online for free the complete book (whole text) full work

Below is the text of the book, divided by pages. System saving the place of the last page read, allows you to conveniently read the book "Android TV apps development: building for media and games" online for free, without having to search again every time where you left off. Put a bookmark, and you can go to the page where you finished reading at any time.

Light

Font size:

Reset

Interval:

Bookmark:

Make
Paul Trebilcox-Ruiz 2016
Paul Trebilcox-Ruiz Android TV Apps Development 10.1007/978-1-4842-1784-9_1
1. Getting Started
Paul Trebilcox-Ruiz 1
(1)
CO, USA
Electronic supplementary material
The online version of this chapter (doi: 10.1007/978-1-4842-1784-9_1 ) contains supplementary material, which is available to authorized users.
As we all know, technology is constantly progressing in every aspect of our lives. With the explosion of smart phones and tablets, it was only a matter of time before televisions joined the fray as one of the next connected smart devices. While interactive televisions have been around for a few years, major contenders have only recently entered the market, with Android TV having been introduced in June of 2014 (albeit after the failed attempt of Google TV and the huge success of Chromecast), and Apple TV finally opening their platform to app developers in September of 2015. Given this, now is the perfect time to prepare for the next trend in app development by expanding your skillset with Android TV.
What Exactly Is Android TV?
Android TV is an interactive television platform developed by Google and released at its I/O conference in 2014. Taking what Google had learned from one of their previous attempts at entering the living room, known as Google TV, they created this operating system to be easily embedded in television sets or to allow traditional dumb TVs to become interactive TVs through the use of standalone set-top boxes. The new platform is a version of Android that has been optimized for television, and has access to all of the features developers are already familiar with, as well as some additional components provided through the Leanback Support library.
In addition to being able to create native applications for Android TV, the operating system also provides support for Google Cast. Google Cast is familiar to most people as the technology behind the Chromecast. This means that if your existing application supports casting, then users will still be able to use it with the Android TV, though without the full immersive experience provided by having a native Android TV app. While understanding how to develop cast enabled apps is useful, this book will focus on developing native apps for Android TV.
What to Expect from this Book
This book is intended to get you started with the Android TV platform so that you can extend existing apps or create your own to improve the living room experience of your users. You should have a basic understanding of Android development, as you will be working with adapters, fragments, activities, views, and other standard Android components. Anything covered that has been specifically introduced for Android TV will be discussed in this book, so no previous knowledge of those components is required. As you work through this book, you will create a relatively simple Android TV media application by writing each of the components in order to fully understand how the application operates. You will also build a couple of small example programs that emphasize additional APIs, such as LAN communication and reading input from the game controller, so you can start to build other applications such as games and utility programs. Along the way you will learn design concepts related to what makes the user experience different on a television compared to smart phones and tablets.
By the time you finish reading this book, you should have a firm grasp on the vocabulary associated with Android TV. Not only will you be able to create apps for the platform, but you should also be able to confidently seek out answers to your more complicated questions by understanding what you are looking for when searching through forums and the extensive, well-written Android documentation from Google.
Getting Set Up
One of the nice things about developing for Android is that the development tools can be used on most modern computer platforms, and Android TV development is no different. For coding the examples in this book, you will need a computer running Windows, Mac OS X, or Linux. This book will focus on using Android Studio as the development environment, which itself currently requires the Java Runtime Environment (JRE) and Java Development Kit (JDK). If you do not already have Android Studio, you can get it and find the official system requirements, including minimum operating system versions, for Android development by visiting https://developer.android.com/sdk/index.html , downloading Android Studio, and following the installation instructions for your operating system. At the time of this writing, the latest version of Android Studio is 1.4. During the installation process you will need to install the platform tools and APIs for at least Android 5.0 (Lollipop).
Creating a New Android TV Project
Once you have installed and set up Android Studio, you can create a sample project using the base Android TV template provided by Google. Do this by opening Android Studio and clicking on Start a New Android Studio Project under the Quick Start header.
When you arrive on the Configure Your New Project screen, set the Application Name to Hello World, the Company Domain to apress.com , and your Project Location to wherever you want to save your source code (see Figure ). Once you have filled in all of the required information, click Next and you will be taken to a screen to select which form factors your app will support.
Figure 1-1 Configure your new project screen For your Hello World - photo 1
Figure 1-1.
Configure your new project screen
For your Hello World application, unselect the check box next to Phone and Tablet and activate the check box next to TV. While you may have a module in your project for supporting phones and tablets, we will ignore that case for the sake of simplicity in this book. The minimum API version you will need for Android TV is at the oldest 21 (Lollipop), as Android TV was introduced with Lollipop. Figure shows what your target Android devices screen should look like before continuing on.
Figure 1-2 Screen for selecting form factors supported by your app When you - photo 2
Figure 1-2.
Screen for selecting form factors supported by your app
When you click Next, youll be taken to a screen that asks whether you want to create an empty project or a default Android TV activity, as shown in Figure . For this sample, choose the Android TV Activity option.
Figure 1-3 Selecting an Android TV template The next screen you encounter - photo 3
Figure 1-3.
Selecting an Android TV template
The next screen you encounter will give you the option of renaming the activities, fragments, and layout files in the sample Android TV application (Figure ). For this example, you can accept the default values and click Finish.
Figure 1-4 Naming your files Android Studio will then take a moment to - photo 4
Figure 1-4.
Naming your files
Android Studio will then take a moment to create the general template for your Hello World application. If you look through the source code for this application, you will notice over a dozen files just in Java. You may also notice that some of the files, such as VideoDetailsFragment.java , contain code that is deprecated, or no longer recommended for use by Google. For now, go ahead and ignore them as you will learn about the different recommended components for a media application later in this book.
Next page
Light

Font size:

Reset

Interval:

Bookmark:

Make

Similar books «Android TV apps development: building for media and games»

Look at similar books to Android TV apps development: building for media and games. We have selected literature similar in name and meaning in the hope of providing readers with more options to find new, interesting, not yet read works.


Reviews about «Android TV apps development: building for media and games»

Discussion, reviews of the book Android TV apps development: building for media and games and just readers' own opinions. Leave your comments, write what you think about the work, its meaning or the main characters. Specify what exactly you liked and what you didn't like, and why you think so.