Android – Get Current Date and Time
Problem: How to get current current date and time in Android? Description: For fetching current date and time, we use Calendar class to get the current instance of system clock...
Problem: How to get current current date and time in Android? Description: For fetching current date and time, we use Calendar class to get the current instance of system clock...
Problem: How to create EditText programatically? Solution: [sourecode language=”java”] EditText ed = new EditText(this); // Type of input that you want from user to input i.e. number, text ed.setInputType(InputType.TYPE_CLASS_TEXT); //...
Problem: How to show bullets in ListView/TextView in Android? Description: There is no easy way to show indentation in ListView/TextView, so here i made a trick and define a drawable...
Description: I know many novice android programmer are facing problem to implement multi-column listview or in confusion to implement this kind of view. so let me write here to implement...
Problem: How to check whether the SD-card is available or not programmatically? Solution:...
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...
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...