Android development primer: Working with Sliding Drawers in Android – Part II
In the first part, I showed you how to use a basic Sliding Drawer in Android. In this post I’ll show you how to make your Sliding Drawers fancier by changing th...
In the first part, I showed you how to use a basic Sliding Drawer in Android. In this post I’ll show you how to make your Sliding Drawers fancier by changing th...
The task is to construct a simple server which just passes a string to the client. Client/server describes the relationship between two computer programs in whi...
Given a set of numbers,our task is to find the number of subsets that sum to a particular value. Example- Set of numbers- {1,3,2,5,4,9} Sum=9 Subsets that sum t...
Given a set of positive integers and a value sum,the task is to find if there is a subset with sum equal to the given value. Example- Given set of numbers- {3,3...
You have to agree that the Sliding Drawer feature of Android is a pretty neat and handy tool to add some text – usually directions for use, help or other import...
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 system…”. R...
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...