4

我将自定义 CursorAdapter 与自定义项目一起使用。我需要视图高度来调整资产文件夹中的位图大小,并将这个调整大小的位图设置为列表项中的 ImegeView;

 @Override
public void bindView(View view, final Context context, final Cursor cursor) {
    final ViewHolder holder = (ViewHolder) view.getTag();

    final int imgCol = cursor.getColumnIndex(TableOdelice.COLUMN_URL);
    int titleCol = cursor.getColumnIndex(TableOdelice.COLUMN_TITRE);
    final int themeCol = cursor.getColumnIndex(TableOdelice.COLUMN_THEME);

    String tempPath = getPath(cursor.getString(themeCol), cursor.getString(imgCol));
    final String path = tempPath.replace(".", "c.");
    String[] arr = cursor.getString(titleCol).split("\\*");
    holder.title.setText(arr[0]);
    holder.subTitle.setText(arr[1]);

    if (itemHeight > 0) {
        showThumb(itemHeight, holder.img, path);
    } else {
        final ImageView v = holder.mainImage;
        v.getViewTreeObserver().addOnGlobalLayoutListener(new OnGlobalLayoutListener() {
            @Override
            public void onGlobalLayout() {
                itemHeight = v.getHeight();
                showThumb(itemHeight, holder.img, path);
            }
        });
    }
}

  private void showThumb(int height, final ImageView iv, final String path) {
    if (thumbs.containsKey(path)) {
        iv.setImageBitmap(thumbs.get(path));
    } else {
        InputStream is = null;
        try {
            is = context.getAssets().open(path);
        } catch (IOException e) {
            Log.d("no file at path", path);
            e.printStackTrace();
        }
        if (is != null) {
                Bitmap btm = btmHelper.scaleToHeight(BitmapFactory.decodeStream(is);, height);
            thumbs.put(path, btm);
            iv.setImageBitmap(btm);

        }
    }

}

为了获得视图高度,我使用视图的 OnGlobalLayoutListener()。

但它很慢......有什么想法吗?

4

3 回答 3

12

我找到了我的问题的答案。使用这种结构,我可以为每个视图在适配器内获得正确的视图宽度或高度。

final ImageView v = holder.mainImage;
            v.post(new Runnable() {
            @Override
            public void run() {
                itemHeight = v.getHeight();
                Log.d("Height", "" + itemHeight);
            }

        });
    }

也许它会帮助某人:)

于 2013-10-04T10:38:20.627 回答
0

试试看可能会更快

 v.getViewTreeObserver().addOnGlobalLayoutListener(new OnGlobalLayoutListener() {
        @Override
        public void onGlobalLayout() {
            itemHeight = v.getHeight();
            showThumb(itemHeight, holder.img, path);
            v.getViewTreeObserver().removeGlobalOnLayoutListener( ActivityInsatance);
        }
    });
于 2013-10-03T11:14:31.233 回答
0

如果您有顶部或底部边距,则会出现错误。当您滚动此列表视图时,每行的高度都会增加。在 v.getViewTreeObserver().addOnGlobalLayoutListener 的情况下,它将无限增长。所以,我的解决方案如下。

holder.layout.post(new Runnable() {
    @Override
    public void run() {
        int height = holder.layout.getMeasuredHeight(); // Total row height.
        RelativeLayout.LayoutParams lp = (RelativeLayout.LayoutParams) holder.textView.getLayoutParams();
        holder.textView.setHeight(height - lp.topMargin - lp.bottomMargin);
});

其中 holder.layout 是到适配器行的根 RelativeLayout 的链接。

于 2016-05-24T13:55:28.777 回答