Creating first Android Project – Hello World in Android Studio 1.4

See here the tutorial for downloading and installing Android Studio version 1.4. Complete tutorial for creating your first project,  a basic “Hello World“,  in Android Studio version 1.4. Project settings: Application name: My first application Company Domain: toyo.example.com Package name: com.example.toyo.myfirstapplication Minimum SDK: API9 – Android 2.3 (Gingerbread) Blank Activity See here next the tutorial how […]
Read the rest of this entry »

Download and install Android Studio version 1.4

Complete tutorial for downloading and installing Android Studio version 1.4. 1. Download and install JAVA from here. 2. Download and install JDK 6 or higher from here. 3. Download Android Studio version 1.4 for Windows 8/7/Vista (32 or 64-bit) from here. Follow video tutorial. In video above you will see: 00:00 Download Android Studio 1.4 […]
Read the rest of this entry »

Get data from website

Tutorial about how to get data from website with WebView in Android Studio. Open Android Studio and create a project (see here how). Application name for this example is WebView. In MainActivity.java write the following code: package com.view.web.webview; import android.app.Activity; import android.content.Context; import android.content.Intent; import android.os.Bundle; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; public class MainActivity […]
Read the rest of this entry »

SVG Integration in Android Studio

Tutorial about how to integrate SVG file in Android Studio. Open Android Studio and create a project (see here how). Application name for this example is SVG. In project structure in app -> res  right click  -> New -> Directory create New Directory. Name New Directory: raw. Click here to download the archive with SVG […]
Read the rest of this entry »

Export your app from Android Studio

Tutorial about exporting (generating signed APK) your application from Android Studio for installing on mobile devices. Application is exported with apk extension. Open Android Studio and first project Hello World created here. Choose from menu: Build -> Generate Signed APK… In next window Generate Signed APK Wizard on Key store path choose Create new… Complete […]
Read the rest of this entry »

Create Emulator in Android Studio

Tutorial about how to create your Emulator (Android Virtual Device) or virtual mobile in Android Studio. We open in Android Studio the project “Hello World” created in last tutorial. Click on AVD Manager icon. Next click on Create Virtual Device. In next window we choose New Hardware Profile. In next window write on Device Name: […]
Read the rest of this entry »