Learn from this tutorial how to give permission to your app to be installed on external storage (SD card) in Android Studio version 1.4. Open AndroidManifest.xml file and write this code like in picture below: android:installLocation=”preferExternal” <uses-permission android:name=”android.permission.WRITE_EXTERNAL_STORAGE”/> This permission is needed only up to API level 18. Beginning with Android 4.4 (API level 19), the system […]
Read the rest of this entry »
Android application that displays 3D photo cube with 6 images on each side, rotating and playing a sound on touch. If you want to learn how to make this app in Android Studio, click here and follow the tutorial. Download free PhotoCube app from here and install it on your device and have fun. For […]
Read the rest of this entry »
Learn from this tutorial how to draw 3D cube with Open GL, rotate it, put six images, one on each side of it and play a sound on click in Android Studio version 1.4. Create New Project with Application name: PhotoCube; Minimum SDK: API9 – Android 2.3 (Gingerbread). Add 6 pictures from computer, in project […]
Read the rest of this entry »
Android application who Play mp4 Video. If you want to learn how to make this app in Android Studio, click here and follow the tutorial. Download free PlayVideo app from here and install it on your device to play movie. For further questions leave a message.
Read the rest of this entry »
Android application who scan any barcode. If you want to learn how to make this app in Android Studio, click here and follow the tutorial. Download free Barcode Reader app from here and install it on your device to scan barcodes. For further questions leave a message.
Read the rest of this entry »
Learn from this tutorial how to Play mp4 Movie using VideoView in Android Studio version 1.4. Create New Project with Application name “Play Video“; Minimum SDK – API 9: Android 2.3 (Gingerbread). Create New Directory in app -> res with name “raw“. Copy a video you want to display, in new created folder, raw; I […]
Read the rest of this entry »
Learn from this tutorial how to make Barcode Reader app in Android Studio version 1.4 in 10 steps: Step 1 – Create New Android Project with Application name “Barcode Reader” and Minimum SDK, API9: Android 2.3 (Gingerbread). Step 2 – Complete the code in activity_main.xml file: Create a button for pressing to scan. <Button android:id=”@+id/scan_button” […]
Read the rest of this entry »
See here how to make a new project in Android Studio 1.4. Learn from this tutorial how to export (generating signed APK) your application from Android Studio 1.4. The app file has .apk extension and it is saved in: C:\Users\computer-name\AndroidStudioProjects\project-name\app\name-app.apk Project settings: Project name: My first application Company Domain: toyo.example.com Package name: com.example.toyo.myfirstapplication Minimum SDK: […]
Read the rest of this entry »
See here the tutorial for creating your Virtual Device (EMULATOR) in Android Studio 1.4. In this tutorial learn how to RUN your APP in existing Emulator (AVD – Android Virtual Device) in Android Studio 1.4 Emulator settings: Name Nexus One, API Level 15, ABI armeabi-v7a, Target Android 4.0.3. For further questions leave a message.
Read the rest of this entry »
See here the tutorial for creating first Android Project – Hello World in Android Studio 1.4. In this tutorial learn how to create your new Android Virtual Device (AVD) – Emulator in Android Studio version 1.4 (with or without vt-x / HAXM /hardware accelaration) . Steps: Open AVD Manager. Click on Create Virtual Device. Click […]
Read the rest of this entry »