| android Programming Glossary: stoploadingdataHow to get Facebook user photo albums using graph api? http://stackoverflow.com/questions/12384717/how-to-get-facebook-user-photo-albums-using-graph-api  JAAlbums JOTemp.getJSONArray data  if JAAlbums.length 0  stopLoadingData true  Runnable run new Runnable  @Override  public void run..   limit 10 getLimit  else  stopLoadingData true  Runnable run new Runnable   @Override   public void run.. .show       Albums.this.runOnUiThread run    else  stopLoadingData true  Runnable run new Runnable   @Override  public void run.. 
 Lazy download images into gridView http://stackoverflow.com/questions/13265457/lazy-download-images-into-gridview  IF NEW FEEDS ARE LOADING Boolean loadingMore true Boolean stopLoadingData false This is the code block that fetches the initial set of.. if lastInScreen totalItemCount loadingMore  if stopLoadingData false  FETCH THE NEXT BATCH OF FEEDS  new loadMorePhotos .execute.. 
 How to get Facebook user photo albums using graph api? http://stackoverflow.com/questions/12384717/how-to-get-facebook-user-photo-albums-using-graph-api   JSONObject JOTemp new JSONObject queryAlbums  JSONArray JAAlbums JOTemp.getJSONArray data  if JAAlbums.length 0  stopLoadingData true  Runnable run new Runnable  @Override  public void run   Toast.makeText getApplicationContext   No more Albums Toast.LENGTH_SHORT.. graph.facebook.com   initialUserID albums access_token   Utility.mFacebook.getAccessToken   limit 10 getLimit  else  stopLoadingData true  Runnable run new Runnable   @Override   public void run   Toast.makeText getApplicationContext    No more Albums .. getApplicationContext    No more Albums   Toast.LENGTH_SHORT .show       Albums.this.runOnUiThread run    else  stopLoadingData true  Runnable run new Runnable   @Override  public void run   Toast.makeText getApplicationContext   No more Albums   Toast.LENGTH_SHORT.. 
 Lazy download images into gridView http://stackoverflow.com/questions/13265457/lazy-download-images-into-gridview  FLAG FOR CURRENT PAGE int current_page 1 BOOLEAN TO CHECK IF NEW FEEDS ARE LOADING Boolean loadingMore true Boolean stopLoadingData false This is the code block that fetches the initial set of Images private class getPhotosData extends AsyncTask Void Void.. int totalItemCount int lastInScreen firstVisibleItem visibleItemCount if lastInScreen totalItemCount loadingMore  if stopLoadingData false  FETCH THE NEXT BATCH OF FEEDS  new loadMorePhotos .execute   And finally this is how I fetch the next set of images.. 
 |