List/Grid

How to? Subscribe to How to?

Making TextView Scrollable in Android

Making TextView Scrollable in Android

I had a issue where the text that i wanted to display in my application was too long, thus i wanted to implement a method that lets user scroll the… Read more »

Check if user has liked your page via Facebook API

Check if user has liked your page via Facebook API

If you wish to display some content that only those facebook users can see who liked your page, then you need to write this little piece of code to verify:… Read more »

Referring to Android Resources Using URIs

Referring to Android Resources Using URIs

In addition to loading Android resources using the Resource manager, you can also reference resources using a specially-formatted URI. Resource URIs can be referenced by resource type/name or by resource… Read more »

HP TouchPad Kernel Released

HP TouchPad Kernel Released

HP has just released the now defunct Touchpad’s Android kernel source code to the masses – despite the fact that the 9.7″ tablet arrived at the market last summer with… Read more »

How to display a Yes/No dialog box in Android?

How to display a Yes/No dialog box in Android?

You can use alert box with Yes/No option for lots of reasons. I used this option to confirm if user wants to close my application. Thus, when user clicks back… Read more »

window.postMessage, Cross Domain Iframe communication

window.postMessage and receiveMessage are part of HTML5 and can be used for communication between two Iframes, belong to two different domains. To send a message to parent window from Iframe… Read more »

WCF net.tcp listener adapter stops responding Issue

Referring to this post net.tcp listener adapter stops responding. To solve this, I added enable port sharing on server by adding portSharingEnabled attribute <bindings> <netTcpBinding> <binding name=”tcpBinding” portSharingEnabled=”true” … Increase… Read more »

How to Connect Your Mobile or iPad Camera Into Webcam

Mobiola is a Trail Software that convert or Turn your iPhone, BlackBerry, Windows Mobile or Symbian (Nokia only) smartphone into a high-quality wireless webcam. Mobiola WebCamera is a great way… Read more »

Display recent Twitter tweets using PHP

Display recent Twitter tweets using PHP

Here is a code to display recent twitter tweets using PHP: $doc = new DOMDocument(); # load the RSS document, edit this line to include your username or user id… Read more »

Program to find Anagrams

An anagram of a word or phrase is the result of rearranging its letters to form another meaningful word or phrase. For example, an anagram of “anagram finder” is “garden… Read more »