内容简介:安利一个截长图的工具以RecyclerView为例
安利一个截长图的工具 ScreenShotTools
。
ScreenShotTools
ScreenShotTools
是一个Android长截图工具。目的是轻松搞定常见的View截图功能。 目前功能有:
1. ScrollView的截图 2. RecyclerView的截图 3. WebView的截图 4. View的截图 5. 各截图提供拼接头部和尾部功能 复制代码
使用方法:
gradle配置
- 在最外层的
build.gradle
中添加maven地址(已传入JCenter,本步骤可以忽略)
allprojects { repositories { .. maven { url 'https://dl.bintray.com/missmydearbear/maven' } } } 复制代码
- 在
app
目录下的build.gradle
中添加
implementation "com.bear:ScreenShotTools:1.0" 复制代码
Api
//1.只截传入的View fun takeCapture(context: Context, view: View, callBack: IScreenShotCallBack?) //2.拼接头部图片 fun takeCapture(context: Context, view: View, topBitmap: Bitmap?, callBack: IScreenShotCallBack?) //3.拼接头部和底部图片 fun takeCapture( context: Context, view: View, topBitmap: Bitmap?, bottomBitmap: Bitmap?, callBack: IScreenShotCallBack? ) //4. 拼接头部和底部图片,且传入图片的宽度 fun takeCapture( context: Context, view: View, topBitmap: Bitmap?, bottomBitmap: Bitmap?, width: Int, callBack: IScreenShotCallBack? ) 复制代码
demo
以RecyclerView为例
override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContentView(R.layout.activity_recycler_view) tv.setOnClickListener { ScreenShotTools.instance.takeCapture(this, recycler_view, object : IScreenShotCallBack { override fun onResult(screenBitmap: ScreenBitmap?) { //todo do your things } }) } loadData() } 复制代码
gitHub: github.com/MissMyDearB…
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Real-Time Rendering, Third Edition
Tomas Akenine-Moller、Eric Haines、Naty Hoffman / A K Peters/CRC Press / 2008-7-25 / USD 102.95
Thoroughly revised, this third edition focuses on modern techniques used to generate synthetic three-dimensional images in a fraction of a second. With the advent or programmable shaders, a wide varie......一起来看看 《Real-Time Rendering, Third Edition》 这本书的介绍吧!