Warning: Undefined array key "width" in /home/100661.cloudwaysapps.com/wwmucwgvgw/public_html/wp-includes/media.php on line 1616

Warning: Undefined array key "height" in /home/100661.cloudwaysapps.com/wwmucwgvgw/public_html/wp-includes/media.php on line 1617
Author and Software Developer

Author: Mike Dalisay

  • Android Share Intent Example for URL, Text or Image

    Today I’m going to give you an android share intent example that you can use to enable your app to share contents such as URL or text and Image to other apps installed in your Android device like Facebook, Twitter, Messaging, Instagram, Evernote, etc.. Example uses of this code include: You are building an app […]

  • Android SQLite Database CRUD Tutorial with Example Application

    Android SQLite Database CRUD Tutorial with Example Application

    This is a step by step android CRUD tutorial where we’ll create an Android application that demonstrates Android’s SQLite database capabilities. Operations such as create, read, update and delete (CRUD) in Android is an essential skill every aspiring Android developer must have. In this post, we will cover the following contents:

  • Android: Copy Asset To SD Card

    Assets folder is where you can store some files for you app. Today I’m going to show you how to copy files from your android app’s asset’s folder to the device SD card. I used this when I have to deploy some default text files for my app and manipulate it at later time. Some […]

  • Working with Text Files in Android

    Today we are going to code about a sample app with some operations I usually play with text files in my Android applications. These operations would include creating, reading, updating,and deleting text files. I find these operations really useful when I have to store some data temporarily, creating some log files, or store some actual […]

  • Android libphonenumber Example

    Today I want to show you a simple example code on how to use a very useful library called libphonenumber, a phone number handling library from Google. It can validate the correct number format for your country. In this example we’re using PH (Philippines) as country code. It is optimized for running on smartphones, and […]

  • Android Camera Code Tutorial

    Today we are going to do a code that can enable your android application to capture images using the device camera. In this example code, we will have: A “Take Picture” button on our main activity, when the user clicks it, the device camera will be shown that will enable your user the take a […]

  • Android Webview Example Code

    Hi there! Today I’m gonna share how to view a website or webpage to your Android apllication. You’ll be able to view webpages from the internet or from the storage of your Adroid device such as your sdcard. This is useful if you want your app not to open a web browser for web links. […]

  • 12+ EditText in Android Example Codes, Screenshots and More!

    Hi guys! Today I’m gonna show you some Android EditText examples that I usually use in my android applications. EditText in Android examples are simply like a text field, text area or a text input field in online forms. It is an editable TextView. EditText in Android Example List In this post, we will cover: […]