开发者

Android Dynamically Load ListView

  • I am adding item i开发者_C百科n ListView using ArrayAdapter.
    • First display 15 item in the ListView.
    • Scroll to bottom it must fetch and display next 15 content from web API.

Give some idea.


There is a tutorial of lazy loading with image. You should check that out

http://ballardhack.wordpress.com/2010/04/05/loading-remote-images-in-a-listview-on-android/

Here is some demo of lazy listview from GitHub.

https://github.com/thest1/LazyList

Hope those can help !!

[Credit go to original author of code and tutorial]


set OnScrollListener. Check how much elements are visible, which is the first visible element.


@Override
        public void onScroll(AbsListView view, int firstVisibleItem, int visibleItemCount, int totalItemCount) {

            if(((firstVisibleItem + visibleItemCount) == totalItemCount) && (totalItemCount > 0)) {
                loadNewData();
            }
        }


getView() of the Adapter will be invoked when an item is visible. So you can start the fetch and display next 15 when getView(14, convertView, parent).


It’s a time-consume task to load data from internet. So AsyncTask is implemented to handle the ListView the bitmap is also loaded in background thread which u can ignore and take the others, and setListAdapter() in onPostExecute().

import java.io.IOException;
import java.io.InputStream;
import java.net.HttpURLConnection;
import java.net.URL;
import java.net.URLConnection;

import android.app.ListActivity;
import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.os.AsyncTask;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
import android.widget.ImageView;
import android.widget.ListView;
import android.widget.TextView;
import android.widget.Toast;

    public class AndroidList extends ListActivity {

     public class backgroundLoadListView extends   AsyncTask {

      @Override  protected void onPostExecute(Void result) {   
// TODO Auto-generated method stub   
setListAdapter(new MyCustomAdapter(AndroidList.this, R.layout.row, month));   Toast.makeText(AndroidList.this,     "onPostExecute n: setListAdapter after bitmap preloaded",     Toast.LENGTH_LONG).show();  
}

      @Override  protected void onPreExecute() {  
 // TODO Auto-generated method stub   
Toast.makeText(AndroidList.this,     "onPreExecute n: preload bitmap in AsyncTask",     Toast.LENGTH_LONG).show();  
}

      @Override  protected Void doInBackground(Void... params) {  
 // TODO Auto-generated method stub  
 preLoadSrcBitmap();   
return null;  
}

}

     String image_URL=  "http://androidboss.com/wp-content/uploads/2010/07/83e268b443ndroid.png.png";

public class MyCustomAdapter extends ArrayAdapter {  
Bitmap bm;

      public MyCustomAdapter(Context context, int textViewResourceId,    String[] objects) 
{   
super(context, textViewResourceId, objects);  
 // TODO Auto-generated constructor stub

       bm = srcBitmap; 
  }

      @Override  public View getView(int position, View convertView, ViewGroup parent) { 
  // TODO Auto-generated method stub   
//return super.getView(position, convertView, parent);

       View row = convertView;

       if(row==null){    LayoutInflater inflater=getLayoutInflater();    row=inflater.inflate(R.layout.row, parent, false);   
 }

       TextView label=(TextView)row.findViewById(R.id.weekofday);   label.setText(month[position]);   ImageView icon=(ImageView)row.findViewById(R.id.icon);

       icon.setImageBitmap(bm);

       return row;  
 }
 }

     Bitmap srcBitmap; 
private void preLoadSrcBitmap()
{  
BitmapFactory.Options bmOptions;
  bmOptions = new BitmapFactory.Options(); 
 bmOptions.inSampleSize = 1; 
 srcBitmap = LoadImage(image_URL, bmOptions);
 }

     String[] month = {   "January", "February", "March", "April",   "May", "June", "July", "August",   "September", "October", "November", "December"   };

     /** Called when the activity is first created. */
 @Override public void onCreate(Bundle savedInstanceState) 
{ 
super.onCreate(savedInstanceState);
  //setContentView(R.layout.main);

      /*setListAdapter(new ArrayAdapter(this,        R.layout.row, R.id.weekofday, DayOfWeek));*/  new backgroundLoadListView().execute();
 }

     @Override protected void onListItemClick(ListView l, View v, int position, long id)
 {  
// TODO Auto-generated method stub  
//super.onListItemClick(l, v, position, id);
  String selection = l.getItemAtPosition(position).toString(); 
 Toast.makeText(this, selection, Toast.LENGTH_LONG).show();
  }

     private Bitmap LoadImage(String URL, BitmapFactory.Options options) {     
   Bitmap bitmap = null;  
InputStream in = null;       
 try { 
  in = OpenHttpConnection(URL);  
 bitmap = BitmapFactory.decodeStream(in, null, options);   in.close(); 
  } catch (IOException e1)
 {  }

      return bitmap;                 }

     private InputStream OpenHttpConnection(String strURL) throws IOException{  
InputStream inputStream = null;  
URL url = new URL(strURL);  
URLConnection conn = url.openConnection();

      try{
   HttpURLConnection httpConn = (HttpURLConnection)conn;  
 httpConn.setRequestMethod("GET");   
httpConn.connect();

       if (httpConn.getResponseCode() == HttpURLConnection.HTTP_OK) {   
 inputStream = httpConn.getInputStream();   
  } 
   }  catch (Exception ex){  }

      return inputStream; }
}
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜