BREAKING:

Android – Loading remote images

Problem: How to load images from web/remote images? Description: This tutorial is going to be a demo for loading images resides at a remote location. For this tutorial, i have implemented AsyncTask to show prorgress bar until the whole image gets loaded fully. Solution: FYI, i have made progress bar visible inside the onPreExecute() method. […]

Read More

Android – SAX Parsing Example

Problem: how to use SAX to parse XML? This tutorial is for the Android novice programmer who want to learn how to parse XML using SAX parser. I have also used Custom ListView inside this tutorial to display parsing result into the ListView. If you don’t know how to define a custom adapter for ListView […]

Read More

Android – Develop android application for Tablets only

Problem: How do we develop Honeycomb Android application for the Tablets only? Description: After Android has released Honeycomb 3.0 SDK for the development of android application for Android tablets, most of android developers are confused on “how do i develop android application targets for both or for specificly for Tablets or Mobile only”. But today […]

Read More

Android – Place Market link inside the App

Problem: How to place a Market link inside the Android application? Description: While answering on StackOverflow, I came across one question on placing market link inside the application and I thought it’s very useful and I thought to document it. You might came across the same problem. There are many ways to put link but […]

Read More

Android – GridView example

Problem: Simple GridView example Description: What do you say, is this simple GridView example?, I think it is not 🙂 :). The main purpose of this post is to give demo for creating nicely laid GridView and also to make GridView more fancy. Same as previous Android – ListView articles, we are going to create […]

Read More

Android – ToggleButton example

Problem: ToggleBar Example Description: This is just the simple example for implementing ToggleButton in android application. Below are some methods which we have used in this example: setOnClickListener – Used to register a callback whenever view is clicked setChecked() – used to mark toggle button as checked/unchecked setTextOn() – used to display text on toggle […]

Read More

Android – Show error in EditText

Problem: How to show error/alert for some cases in EditText? Description: Consider a case that we are supposed to collect information from users by filling EditText box and user leaves EditText blank, at that we display alert/error message “Please enter string”. But here is a best way to display alert/error message in EditText for the […]

Read More