Time Picker in Android
Just like Number Picker provides a neat way to select values from a given range, Android also provides a Time Picker tool. This, as the name suggest is used to ...
Just like Number Picker provides a neat way to select values from a given range, Android also provides a Time Picker tool. This, as the name suggest is used to ...
Problem : USB disk/storage devices are auto loaded as Read Only in Ubuntu. When attempting write operation it gives the message like “Read only file syste...
Often times in our applications ,we are going to need to let the user choose numeric values. Of course we can design a custom Dialog box with an Edit Text and l...
AlarmManager as the name suggests is used to schedule actions in an Android system. Do not be misled by the name that it is used to schedule the alarms. It can ...
In the last post, I showed you how to make the front end for the List View with check box using Custom Data Adapters. This post will deal with the coding of the...
We have been using ArrayAdapter and SimpleCursorAdapter while populating our List View with elements from an array and a database respectively. It is worth know...
You have already seen how Context Menus work with ArrayAdapter. In case of SimpleCursorAdapter there are a few methods that can be used in order to retrieve the...
In the last post, I showed you how to populate a ListView from the data present at any time in a database. We used a separate XML for defining the layout of a s...
Till now we have been populating our List View with a predefined String array using the ArrayAdapter class of Java. Practically, a predefined array is hardly, i...
Now that we are familiar with long clicks and Context Menus that are triggered by them, we must understand that Context Menus are but a kind of menu and just li...