如何使用opencms进行solr搜索的nextCursorMark

时间:2017-06-27 19:51:55

标签: solr opencms

我在opencms(10.5.1)中搜索并需要使用solr游标,但我不知道如何使用opencms获取nextCursorMark。

有没有办法在opencms中获取nextCursorMark?

1 个答案:

答案 0 :(得分:0)

我能够得到nextCursorMark如下:

public static Bitmap loadBitmapFromView(View v) {
    Bitmap b = Bitmap.createBitmap( v.getLayoutParams().width, v.getLayoutParams().height, Bitmap.Config.ARGB_8888);                
    Canvas c = new Canvas(b);
    v.layout(v.getLeft(), v.getTop(), v.getRight(), v.getBottom());
    v.draw(c);
    return b;
}