こんにちは、非同期モードの連絡先画像を読み込む方法が見つかりません。私のコードはハイエンドの携帯電話では問題ないようですが、メモリとプロセッサが少ない携帯電話は遅いです。これは私のアクティビティのコードですonScrollchanged
。スクロール
mAdapter = new DialerContactsAdapter(contactos,getActivity());
listaContactos.setAdapter(mAdapter);
listaContactos.setFastScrollEnabled(true);
listaContactos.setOnScrollListener(new OnScrollListener() {
@Override
public void onScrollStateChanged(AbsListView view, int scrollState) {
switch (scrollState) {
case OnScrollListener.SCROLL_STATE_IDLE:
mAdapter.mBusy = false;
mAdapter.notifyDataSetChanged();
break;
case OnScrollListener.SCROLL_STATE_TOUCH_SCROLL:
mAdapter.mBusy = false;
mAdapter.notifyDataSetChanged();
break;
case OnScrollListener.SCROLL_STATE_FLING:
mAdapter.mBusy = true;
break;
}
}
@Override
public void onScroll(AbsListView view, int firstVisibleItem,
int visibleItemCount, int totalItemCount) {
// TODO Auto-generated method stub
}
});
これは私のカスタム アダプターです。「常にデータベースから画像を読み込み、サイズ変更を行い、LruCache クラスに保存します。
@Override
public View getView(int position, View convertView, ViewGroup parent) {
ViewHolder holder =null;
View v = convertView;
if (v == null) {
LayoutInflater vi = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
v = vi.inflate(R.layout.dialer_contact_list, null);
holder = new ViewHolder();
holder.Picture = (ImageView) v.findViewById(R.id.imgContactDialer);
holder.Desc =(TextView) v.findViewById(R.id.txtContactNameDialer);
holder.phone =(TextView)v.findViewById(R.id.txtContactNumberDialer);
v.setTag(holder);
}else
{
holder = (ViewHolder)v.getTag();
}
final ViewHolder holder2 = holder;
final ContactInfo ci = (ContactInfo) getItem(position);
holder2.Picture.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent contact = new Intent(context, ShowSingleContactFragment.class);
contact.putExtra("id", ci.get_id());
contact.putExtra("name", ci.getDisplayName());
context.startActivity(contact);
}
});
//genera PlaceHolder
Bitmap cacheImg = cache.getBitmapFromMemCache(ci.get_id());
if(cacheImg==null)
{
if(!mBusy)
{
new Thread(new Runnable() {
public void run() {
final Bitmap photo= Contacts.loadContactPhoto(ci.get_id(),context.getBaseContext(),context.getResources().getInteger(R.integer.contact_picture_size));
cache.addBitmapToMemoryCache(ci.get_id(), photo);
holder2.Picture.post(new Runnable() {
public void run() {
holder2.Picture.setImageBitmap(photo);
}
});
}
}).start();
}else
{
holder.Picture.setImageResource(R.drawable.ic_contact_picture);
}
}else
{
holder2.Picture.setImageBitmap(cacheImg);
}
}
これは私の BitmapCache クラスです
public class BitmapCache {
public LruCache<String, Bitmap> mMemoryCache;
public BitmapCache(Context mContext)
{
final int memClass = ((ActivityManager) mContext.getSystemService(
Context.ACTIVITY_SERVICE)).getMemoryClass();
// Use 1/8th of the available memory for this memory cache.
final int cacheSize = 1024 * 1024 * memClass / 8;
mMemoryCache = new LruCache <String, Bitmap>(cacheSize) {
@Override
protected int sizeOf(String key, Bitmap bitmap) {
// The cache size will be measured in bytes rather than number of items.
return getByteCount(bitmap);
}
};
}
@SuppressLint("NewApi")
private int getByteCount(Bitmap bitmap)
{
if(Utils.isHoneyComb())
{
return bitmap.getByteCount();
}else
{
return bitmap.getRowBytes() * bitmap.getHeight();
}
}
public void addBitmapToMemoryCache(String key, Bitmap bitmap) {
if (getBitmapFromMemCache(key) == null) {
mMemoryCache.put(key, bitmap);
}
}
public Bitmap getBitmapFromMemCache(String key) {
return mMemoryCache.get(key);
}
}
Android の連絡先リストが見つかりません。誰か助けてもらえますか? どうもありがとう。