使用Gradle查看Android依赖树图

直接使用一下命令即可: ./gradlew :app:dependencies :app是查询对应名称module的依赖树,根据情况可以设置为自己的module名

萌萌の初音 发布于 2024-07-28

build.gradle引入包区别

implementation(compile): 该依赖方式所依赖的库不会传递,只会在当前module中生效。 api(compile):

萌萌の初音 发布于 2024-07-28

使用kotlin批量删除list的几种方式

方式一: @Test fun test1() { val list = mutableListOf(1, 2, 3, 4, 5, 6) list.listIterator().let { listIterator -> whi

萌萌の初音 发布于 2024-07-28

获取View位于屏幕左上角的x、y距离

可以通过以下方式获取view的x\y离屏幕左上角的距离 val size = intArrayOf(0, 1) view.getLocationOnScreen(size) 其中size的0是x坐标,1是y坐标

萌萌の初音 发布于 2024-07-28

RecyclerView搭配SeekBar实现滑动指示器功能

RecyclerView与SeekBar 联动代码(默认横向滚动) seekBar?.apply { setPadding(0) thumbOffset = 0 } recyclerView.addOnScrollListener(object

萌萌の初音 发布于 2024-07-28

修复部分android机型拍照后图片方向不对的问题

在使用某些机型调用摄像头拍摄图片后,获得的图片方向不对,这时候我们可用通过ExifInterface类获得图片属性,然后根据图片角度进行处理,直接上代码:import android.graphics.Bitmapimport android.graphics.BitmapFactoryimport

萌萌の初音 发布于 2024-01-02