Android 3.0 Honeycomb Drag and Drop tutorial
Since Android 3.0 Honeycomb we have drag and drop framework which allows us to move data from one view to another in current layout by simple graphical drag and drop gesture. The Drag and Drop...
View ArticleDifferent screen orientation on different screen size.
There are many tutorials around on web which tells how to support different screen sizes in android. But there are many tiny little real problems which comes in every day life of android developer...
View ArticleResizing webview to match the content size
There has been lots of discussion around methods of resizing the webview to fit the size of its content. The actual issue can be seen when we are using webview inside a scrollview. In case we wish to...
View ArticleAndroid, open application on click of a URL.
Add following code in your AndroidManifest.xml tag. <intent-filter> <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent.category.DEFAULT" />...
View ArticleGet Apache & PHP working on Mac OS X 10.10 Yosemite
Three saviour commands Start Apache sudo apachectl start Stop Apache sudo apachectl stop Restart Apache sudo apachectl restart Enable PHP Open terminal and edit /etc/apache2/httpd.conf sudo vi...
View ArticleGIT find out the url of current repository.
If referential integrity has been broken: git config --get remote.origin.url If referential integrity is intact: git remote show originFiled under: Android
View ArticleJavaScript faster for loops
Assuming you want to traverse through an array using for-loop var array = [...........] Slow Way array.forEach(function(x){ // TODO: Do Something }); Fast Way for(var i = 0; i < array.length; i++){...
View ArticleAndroid Screen & Aspect Ratios
Most of the time one need to understand the target device’s aspect ratio for designing the UX, Following is the list of aspect ratios known to be available on Android devices. 4:3 3:2 16:10 5:3 16:9...
View ArticleHTML, jQUERY find actual size of image in img tag
Basically using DOM functions, if we try and get the size of <img />, we always get the dimensions of DOM element, not the actual image. To be able to get actual size of image, we will have to...
View ArticleHTML – Download image through AJAX and display it
AJAX was initially designed to be used with text data (JSON/HTML/XML) and that is why this requirement of downloading images using AJAX were never fulfilled. But with HTML5, XHR2 has been introduced...
View Article