归档

2024 年 07 月

直接使用一下命令即可: ./gradlew :app:dependencies :app是查询对应名称module的依赖树,根据情况可以设置为自己的module名
implementation(compile): 该依赖方式所依赖的库不会传递,只会在当前module中生效。 api(compile):
方式一: @Test fun test1() { val list = mutableListOf(1, 2, 3, 4, 5, 6) list.listIterator().let { listIterator -> whi
可以通过以下方式获取view的x\y离屏幕左上角的距离 val size = intArrayOf(0, 1) view.getLocationOnScreen(size) 其中size的0是x坐标,1是y坐标
RecyclerView与SeekBar 联动代码(默认横向滚动) seekBar?.apply { setPadding(0) thumbOffset = 0 } recyclerView.addOnScrollListener(object
一下配置增量变异从1min多缩小到30-40sgradle.properties:org.gradle.jvmargs=-Xmx4g -Dfile.encoding=UTF-8 -XX:+UseG1GCkotlin.daemon.jvm.options=-Xmx4g -XX:+UseG1GCandr
在compose开发中,text只能传入TextUnit类型的sp文字大小,sp会根据系统设置的文字大小、显示大小而改变,不符合我们的预期,以一下方式解决,直接贴代码:@Composablefun Int.nsp() = getRealDp(LocalContext.current, this.to

2024 年 01 月

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