1

画像が Droidfu キャッシュから取得された場合でも、この GridView がスムーズにスクロールしない理由を教えてください。

ImageLoader を使用した独自のデフォルト ハンドラーである WebImageView を試し、sqlLite 呼び出しを削除して静的 URL を使用し、画像が読み込まれた後に画像を非表示にしてフェードインしようとしました。これを引き起こしているのはDroidFuですか?すでに投資しているので、Droidfu を捨てるのは嫌です。明らかに、GridView スクロールに挿入されたローカルの画像リソースは問題ありません。私はこの問題にあまりにも長い時間を費やしてきました。

    public View getView(int position, View convertView, ViewGroup parent) {

        mCursor.moveToPosition(position);

        String thumbUrl=imagePath+mCursor.getString(mCursor.getColumnIndex("imagename"));
        if (convertView == null) {
            convertView=(View)mInflater.inflate(R.layout.grid_thumb_layout, null);
        }
        WebImageView thumb=(WebImageView)convertView.findViewById(R.id.thumb);
        thumb.reset();
        thumb.setImageUrl(thumbUrl);
        thumb.loadImage();
        return convertView;

    }

xml:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" 
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<GridView android:id="@+id/gridview" android:layout_width="fill_parent"
    android:layout_height="fill_parent"  android:numColumns="auto_fit"
    android:verticalSpacing="2dp" android:horizontalSpacing="2dp"
    android:columnWidth="150dp" 
    android:rowHeight="150dp" 
    android:fadingEdge="vertical"
    android:paddingLeft="2dp" android:paddingRight="2dp"
    android:gravity="center" />
</RelativeLayout>


<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="150dp"
android:layout_height="150dp">
<com.github.droidfu.widgets.WebImageView android:id="@+id/thumb"
    android:scaleType="fitCenter" android:layout_weight="1"
    android:layout_width="150dp"
    android:layout_height="150dp" xmlns:android="http://schemas.android.com/apk/res/android" >
</com.github.droidfu.widgets.WebImageView>
</RelativeLayout>
4

1 に答える 1