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 server and cache the same to location of your choice. The cache limit can set. You can also choose your own location to cache images. Cache can also be cleared.
Instead of user waiting to download large images and then displaying lazy list, loads images on demand. Since images are cached you can display images offline.
A simple library to display images in Android ListView. Images are being downloaded asynchronously in the background. Images are being cached on SD card and in memory. Can also be used for GridView and just to display images into an ImageView.
other examples:
James A Wilson give the best examles of highest vote on stackover.
package com.wilson.android.library;


import java.io.IOException;

public class DrawableManager {
private final Map<String, Drawable> drawableMap;

public DrawableManager() {
drawableMap
= new HashMap<String, Drawable>();
}

public Drawable fetchDrawable(String urlString) {
if (drawableMap.containsKey(urlString)) {
return drawableMap.get(urlString);
}

Log.d(this.getClass().getSimpleName(), "image url:" + urlString);
try {
InputStream is = fetch(urlString);
Drawable drawable = Drawable.createFromStream(is, "src");


if (drawable != null) {
drawableMap
.put(urlString, drawable);
Log.d(this.getClass().getSimpleName(), "got a thumbnail drawable: " + drawable.getBounds() + ", "
+ drawable.getIntrinsicHeight() + "," + drawable.getIntrinsicWidth() + ", "
+ drawable.getMinimumHeight() + "," + drawable.getMinimumWidth());
} else {
Log.w(this.getClass().getSimpleName(), "could not get thumbnail");
}

return drawable;
} catch (MalformedURLException e) {
Log.e(this.getClass().getSimpleName(), "fetchDrawable failed", e);
return null;
} catch (IOException e) {
Log.e(this.getClass().getSimpleName(), "fetchDrawable failed", e);
return null;
}
}

public void fetchDrawableOnThread(final String urlString, final ImageView imageView) {
if (drawableMap.containsKey(urlString)) {
imageView
.setImageDrawable(drawableMap.get(urlString));
}

final Handler handler = new Handler() {
@Override
public void handleMessage(Message message) {
imageView
.setImageDrawable((Drawable) message.obj);
}
};

Thread thread = new Thread() {
@Override
public void run() {
//TODO : set imageView to a "pending" image
Drawable drawable = fetchDrawable(urlString);
Message message = handler.obtainMessage(1, drawable);
handler
.sendMessage(message);
}
};
thread
.start();
}

private InputStream fetch(String urlString) throws MalformedURLException, IOException {
DefaultHttpClient httpClient = new DefaultHttpClient();
HttpGet request = new HttpGet(urlString);
HttpResponse response = httpClient.execute(request);
return response.getEntity().getContent();
}
}
Alternative of LazyList is:

open source instrument Universal Image Loader. It is originally based on Fedor Vlasov's project LazyList and has been vastly improved since then.
  • Multithread image loading
  • Possibility of wide tuning ImageLoader's configuration (thread executors, downlaoder, decoder, memory and disc cache, display image options, and others)
  • Possibility of image caching in memory and/or on device's file sysytem (or SD card)
  • Possibility to "listen" loading process
  • Possibility to customize every display image call with separated options
  • Widget support
  • Android 2.0+ support
Finally, you may use this also,this is also best tutoiral for lazylist image loader.
I have followed this Android Training and I think it does an excellent job at downloading images without blocking the main UI. It also handles caching and dealing with scrolling through many images: Loading Large Bitmaps Efficiently

All sources from statckover.

Happy Coding!!!

Share in social media or email or message in android


Here is the simple tutorials for all android application developer who want to
made share your data on social media, or message to your friend even you can save
in 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 to create share menu.
res/menu/main.xml
-----------------
<menu xmlns:android="http://schemas.android.com/apk/res/android" >

     <item
        android:id="@+id/refresh"
        android:alphabeticShortcut="r"
        android:icon="@drawable/ic_action_refresh"
        android:orderInCategory="100"
        android:showAsAction="always"/>
    <item
        android:id="@+id/share"
        android:actionProviderClass="android.widget.ShareActionProvider"
        android:icon="@drawable/ic_action_share"
        android:orderInCategory="1"
        android:showAsAction="collapseActionView"
        android:title="@string/share"/>
 

</menu>

-----------
Information that you want to share
res/layout/share.xml
------------
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >
    <EditText
        android:id="@+id/editText1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:ems="10"
        android:inputType="textPersonName" >

        <requestFocus />
    </EditText>

    <EditText
        android:id="@+id/editText2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/editText1"
        android:layout_centerHorizontal="true"
        android:ems="10"
        android:inputType="number" />

    <EditText
        android:id="@+id/editText3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/editText2"
        android:layout_centerHorizontal="true"
        android:ems="10"
        android:inputType="textEmailAddress" />

</RelativeLayout>

----------------------
Main Source Code:
src/MainActivity.java
----------------
public class MainActivity extends Activity {

private String shareBody;
String name, phone, email;
EditText et_name, et_phone, et_email;
private Menu optionsMenu;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.share);
setupviews();
}

private void setupviews() {
// TODO Auto-generated method stub
et_name = (EditText) findViewById(R.id.editText1);
et_phone = (EditText) findViewById(R.id.editText2);
et_email = (EditText) findViewById(R.id.editText3);
}
@TargetApi(Build.VERSION_CODES.HONEYCOMB)
@SuppressLint("NewApi")
public void setRefreshActionButtonState(final boolean refreshing) {
if (optionsMenu != null) {
final MenuItem refreshItem = optionsMenu.findItem(R.id.refresh);
if (refreshItem != null) {
if (refreshing) {
refreshItem
.setActionView(R.layout.actionbar_indeterminate_progress);
} else {
refreshItem.setActionView(null);
}
}
}
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
this.optionsMenu = menu;
getMenuInflater().inflate(R.menu.main, menu);
return true;
}

// handle click events for action bar items
@SuppressLint("NewApi")
@Override
public boolean onOptionsItemSelected(MenuItem item) {

switch (item.getItemId()) {

case R.id.share:
// showToast("Share was clicked.");

name = et_name.getText().toString();
phone = et_phone.getText().toString();
email = et_email.getText().toString();

shareBody = "\"" + "Sharing Messsage: " + "\"    " + "Name:-"
+ "-->>" + name + ", " + "Phone:- " + "-->>" + phone + ", "
+ "Email:- " + "-->>" + email;
ShareActionProvider myShareActionProvider = (ShareActionProvider) item
.getActionProvider();

Intent myIntent = new Intent();
myIntent.setAction(Intent.ACTION_SEND);
myIntent.putExtra(Intent.EXTRA_TEXT, shareBody);
myIntent.setType("text/plain");

myShareActionProvider.setShareIntent(myIntent);

return true;

default:
return super.onOptionsItemSelected(item);
}
}
}


-----------------
Output Looks Like:

Happy Coding   :)

Android App publish in app store free and paid


Are you ready to publish your android app. Here some paid and free option and Operating system-native platforms or Third-party platforms.


Operating system-native platforms

-----------------------------------------------------
Established October 22, 2008
Status : Live
Owner : Google
Available apps : 1,000,000(Jul 24, 2013)
Download count: 50 billion 
Installed base : 500 million(June 2012)
Allows individual developers to publish : Yes 
Developer's cut per sale:  70%
Developer fees:  US$25
Development tool(s):  Android SDK, Android Studio
Free of charge IDE?:  Yes


Established September 14, 2009
Status : Live 
Owner : Samsung, Handmark
Available apps : 13,000 (March 24, 2011)
Download count: 100 million Bada Apps (March 2011)
Installed base : 20 million Samsung Smart TV Apps ,5 million (March 2011)  Multiple
Allows individual developers to publish : Yes 
Developer's cut per sale:  70% 
Developer fees:  Free
Development tool(s):  Android SDK,Samsung Mobile SDK, Samsung Smart TV SDK,bada SDK (bada is discontinued) 
Free of charge IDE?:  Yes

Third-party platforms
-----------------------------


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
------------
1. Open the eclipse.ini file from your eclipse folder,see the picture below.
eclipse.ini
2. Open eclipse.ini in Notepad or any other text-editor application, Find the line -Xmx256m (or -Xmx1024m). Now change the default value 256m (or 1024m) to 512m. You also need to give the exact java installed version (1.6 or 1.7 or other).
max size
Like This:
-Xmx512m
-Dosgi.requiredJavaVersion=1.6
OR
-Xmx512m
-Dosgi.requiredJavaVersion=1.7
Then it works .

Solutions 2.
-----------

if solutions 1 is not working then try this:
Try removing the -vm P:\Programs\jdk1.6\bin lines.

Also, a general recommendation: set -Dosgi.requiredJavaVersion=1.6, not 1.5.

Solution 3
--------------
There are two place in eclipse.ini that includes
--launcher.XXMaxPermSize
256m
make it
--launcher.XXMaxPermSize
128m

Solution 4.
-------------------
if all the above solutions is not working then, try this:

Try to add



-vm D:\Java\jdk1.6.0_29\bin\javaw.exe
FYI: Refer sunblog
Source:http://stackoverflow.com/questions/7302604/eclipse-error-failed-to-create-the-java-virtual-machine
HappY CodinG