Learn how to create an Android project (Hello World!) with Android Studio version 1.5.1 step by step. Start a new Android Studio project. Application name: “My first application”. App will run on Phone and Tablet. Minimum SDK: API 9 – Android 2.3 (Gingerbread). Run app Create Virtual Device (Emulator): Nexus S – API 10 – […]
Read the rest of this entry »
Learn to add SDK Packages in Android Studio 1.5.1 TUTORIAL video. Open Android Studio – Configure – SDK Manager and check packages you want to install: Android 2.2 (API 8), Android 2.3.3 (API 10), Android 4.0.3 (API 15), Android 4.1.2 (API 16), Android 4.2.2 (API 17), Android 4.3.1 (API 18), Android 4.4.2 (API 19), Android […]
Read the rest of this entry »
Step by step how to install Android Studio version 1.5.1 with video tutorial. Step 1) Download and install Java Development Kit (JDK) 7 from here: http://www.oracle.com/technetwork/java/javase/downloads/jdk7-downloads-1880260.html Step 2) Download and install Android Studio from here: http://developer.android.com/sdk/index.html Attention: if you have error “can’t locate the Android SDK”, the path is C:\Users\ComputerName\AppData\Local\Android\Sdk Check next tutorials to learn […]
Read the rest of this entry »
Complete Tutorial how to play Youtube videos in Android Studio 1.5 with VideoView. Create New Project with Application name: Play Youtube; Minimum SDK: API9 – Android 2.3 (Gingerbread). In app->res->layout->activity_main.xml add the VideoView with code: <VideoView android:id=”@+id/videoView” android:layout_width=”wrap_content” android:layout_height=”wrap_content” android:layout_centerVertical=”true” android:layout_centerHorizontal=”true” /> In app->java->MainActivity complete the code (in onCreate): package com.app.toyo.playyoutube; import android.net.Uri; import android.support.v7.app.AppCompatActivity; […]
Read the rest of this entry »
Android application who display a slideshow with winter holiday pictures, using fade in and fade out effects. If you want to learn how to make a slideshow wallpaper app in Android Studio, click here and follow the tutorial. Download free slideshow app from here and install it on your device to see most beautiful winter […]
Read the rest of this entry »
Tutorial how to make a slideshow, with fade in and fade out effect between pictures, in Android Studio version 1.5. Create New Project with Application name: Slideshow Wallpaper; Minimum SDK: API9 – Android 2.3 (Gingerbread). Add 8 pictures from computer, in project folder app->res->drawable: picture1.jpg, picture2.jpg, picture3.jpg, picture4.jpg, picture5.jpg, picture6.jpg, picture7.jpg, picture8.jpg. Or download from […]
Read the rest of this entry »
Android application who show you how many days, hours, minutes, seconds are left until New Year 2016. App has a very beautiful winter holiday background with the tinkling of bells sound on screen touch. If you want to learn how to make a countdown app in Android Studio, click here and follow the tutorial. Download free […]
Read the rest of this entry »
Android application who show you how many days, hours, minutes, seconds are left until Christmas 2016. App has a very beautiful winter holiday background and Santa Claus wish you: “Merry Christmas!” on screen touch. If you want to learn how to make a countdown app in Android Studio, click here and follow the tutorial. Download […]
Read the rest of this entry »
Android application who show you how many days, hours, minutes, seconds are left until Christmas 2015. App has a very beautiful winter holiday background and Santa Claus wish you: “Merry Christmas!” on screen touch. If you want to learn how to make a countdown app in Android Studio, click here and follow the tutorial. Download […]
Read the rest of this entry »
Learn from this tutorial how to make a Christmas Countdown, how many days till Christmas 2015, app in Android Studio version.1.4. Create New Project with Application name: Merry Christmas; Minimum SDK: API9 – Android 2.3 (Gingerbread). Add 2 pictures, one for app background and one for countdown background, in res->drawable folder. Complete code in res->values->strings.xml […]
Read the rest of this entry »