How to lazy load of images in ListView or LazyList?

Lazy List is lazy loading of images from sd-card or from server using urls. It is like on demand loading images.Images can be cached to local sd-card or phone memory. Url is considered the key. If the key is present in sd-card, display images from sd-card else display image by downloading from...

Share in social media or email or message in android

Here is the simple tutorials for all android application developer who want tomade share your data on social media, or message to your friend even you can savein memo.You can also share in social app like, viber, whatsapp, chaton, facebook, twitter, google plus.Here is the tips or code:first you have...

Eclipse - Failed to create the java virtual machine

Mostly eclipse user developer stick this error sometimes or many times during on his developing careers. So lets find out some solution, how to fix "failed to create the java virtual machine".I have found some fine solution in stackoverflow and borrowing some answers here.Solutions 1------------ ...

If WiFi state is not enabling ? How to enable.

If your application wifi state not enable please do something fro enabling the wifi state. this answers taken from stackoverflow.First you need to declare the following in your manifest file<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"></uses-permission><uses-permission android:name="android.permission.UPDATE_DEVICE_STATS"></uses-permission><uses-permission...

Convert String to Code at runtime in Java

In many case if you god string and that doesnot work fro checking logical condition then you may have to convert to code and use it.One option is using BeanShell: BeanShell Offical key class is bsh.Interpreter.Download BeanShell ->> http://www.beanshell.org/download.htmlif you download successfully  above bsh jar file. then import it>1. Right Click to Project2. Go...

Split same pattern String in java

This is simple but useful tutorials for begainers and intermediate .If you have same pattern string then you can split and store in string array. like thisString strtest1="software android developer job software java developer job software web developer job";others may be in user when you get logical condition string from database like this:first method:             ...