Git Product home page Git Product logo

Comments (2)

afkT avatar afkT commented on August 28, 2024

看描述猜测,应该是存在动画且没绘制导致,你可以这样尝试下解决

CapturePictureUtils#snapshotByRecyclerView_LinearLayoutManager

新建一个类,复制该方法代码,并且进行修改 竖屏 的代码

// ===========
// = 竖向滑动 =
// ===========

for (int i = 0; i < itemCount; i++) {
    RecyclerView.ViewHolder holder = adapter.createViewHolder(recyclerView, adapter.getItemViewType(i));
    adapter.onBindViewHolder(holder, i);
    View childView = holder.itemView;
    WidgetUtils.measureView(childView, recyclerView.getWidth());
    bitmaps[i] = canvasBitmap(childView, config);
    height += childView.getMeasuredHeight();
}

修改为自己的 Adapter 并且新增自定义方法,自定义方法主要的作用是对 holder.itemView 里面的动画 View 进行直接赋值并且不做动画效果,且调用 postInvalidate。

这样就能够实现,截图走无动画且进行绘制,非截图则有动画,你看下这样的思路能否正常截出来

from devutils.

afkT avatar afkT commented on August 28, 2024

看描述猜测,应该是存在动画且没绘制导致,你可以这样尝试下解决

CapturePictureUtils#snapshotByRecyclerView_LinearLayoutManager

新建一个类,复制该方法代码,并且进行修改 竖屏 的代码

// ===========
// = 竖向滑动 =
// ===========

for (int i = 0; i < itemCount; i++) {
    RecyclerView.ViewHolder holder = adapter.createViewHolder(recyclerView, adapter.getItemViewType(i));
    adapter.onBindViewHolder(holder, i);
    View childView = holder.itemView;
    WidgetUtils.measureView(childView, recyclerView.getWidth());
    bitmaps[i] = canvasBitmap(childView, config);
    height += childView.getMeasuredHeight();
}

修改为自己的 Adapter 并且新增自定义方法,自定义方法主要的作用是对 holder.itemView 里面的动画 View 进行直接赋值并且不做动画效果,且调用 postInvalidate。

这样就能够实现,截图走无动画且进行绘制,非截图则有动画,你看下这样的思路能否正常截出来

例:adapter.xxxMethod(childView, adapter.getItemViewType(i)) 这样就能够知道属于什么 viewType

from devutils.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.