10 2024 档案
Android开发之平板和横竖屏适配-RecyclerView
摘要:需求:Android中RecyclerView在平板上实现列表横屏4个卡片,竖屏3个卡片,手机上2个卡片? 1. 添加依赖 确保在 build.gradle 中添加了 RecyclerView 的依赖: implementation 'androidx.recyclerview:recyclervi 阅读全文
posted @ 2024-10-24 10:42 巫山老妖 阅读(45) 评论(0) 推荐(0) 编辑
Android开发之平板和横竖屏适配
摘要:一、判断设备是否是平板 1、方法1 /** * 判断是否为平板 * @return */ fun isPad(context: Context): Boolean { val wm = context.getSystemService(Context.WINDOW_SERVICE) as Windo 阅读全文
posted @ 2024-10-23 17:02 巫山老妖 阅读(213) 评论(0) 推荐(0) 编辑