我在opencms(10.5.1)中搜索并需要使用solr游标,但我不知道如何使用opencms获取nextCursorMark。
有没有办法在opencms中获取nextCursorMark?
答案 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;
}