Quantcast
Browsing latest articles
Browse All 18 View Live

Image may be NSFW.
Clik here to view.

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 Article


Image may be NSFW.
Clik here to view.

Different 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 Article


Image may be NSFW.
Clik here to view.

Resizing 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 Article

Image may be NSFW.
Clik here to view.

Android, 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 Article

Image may be NSFW.
Clik here to view.

Get 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 Article


Image may be NSFW.
Clik here to view.

GIT 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 Article

Image may be NSFW.
Clik here to view.

JavaScript 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 Article

Image may be NSFW.
Clik here to view.

Android 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 Article


Image may be NSFW.
Clik here to view.

HTML, 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 Article


Image may be NSFW.
Clik here to view.

HTML – 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
Browsing latest articles
Browse All 18 View Live