当前位置:首页 > 移动开发 >

文章分类:移动开发

移动开发 androidstudio出包问题--Warning: there were 1 unresolved referenc

问题: Warning: there were 1 unresolved references to classes or interfaces. You may need to add missing library jars or update their versions. If your code works fine without the missing classes, you can suppress the warnings with ‘-don……

移动开发 利用DoHome APP和音箱控制小车的实验参考步骤

准备材料: Arduino Uno 一块 Arduino 扩展板 购买链接 DT-06模块一个 购买链接 安卓手机一个 小度音箱一个 小车一个 杜邦线若干 1.DT-06固件的烧录 1.1打开ESP模块下载工具ESPFlashDownloadTool,选择……

移动开发 利用DoHome APP和音箱控制LED灯实验参考步骤

准备材料: Arduino Uno 一块 Arduino 扩展板 购买链接 DT-06模块一个 购买链接 安卓手机一个 小度音箱一个 小灯珠一个 杜邦线若干 1.DT-06固件的烧录 1.1打开ESP模块下载工具ESPFlashDownloadTool……

移动开发 JavaScript操作select下拉框选项移动

运行结果: 源代码: 1 ! DOCTYPE html 2 html lang ="zh" 3 head 4 meta charset ="UTF-8" 5 title 选项移动 / title 6 / head 7 body 8 table width ="285" height ="169" border ="0" align ="left" cellpadding ="0" cellspacing ="0" 9 sty……

移动开发 SpringBoot整合MybatisPlus3.X之自定义Mapper(十)

pom.xml dependencies dependency groupIdorg.springframework.boot/groupId artifactIdspring-boot-starter/artifactId /dependency dependency groupIdcom.baomidou/groupId artifactIdmybatis-plus-boot-starter/artifactId version3.2.0/version /depende……

移动开发 iOS原生与H5交互

一、WKWebView WKWebView 初始化时,有一个参数叫configuration,它是WKWebViewConfiguration类型的参数,而WKWebViewConfiguration有一个属性叫userContentController,它又是WKUserContentController类型的参数。 W……

移动开发 Android 项目优化(五):应用启动优化

介绍了前面的优化的方案后,这里我们在针对应用的启动优化做一下讲解和说明。 一、App启动概述 一个应用App的启动速度能够影响用户的首次体验,启动速度较慢(感官上)的应用可能导……

移动开发 iOS测试-如何指标量化app耗电量和性能XCTest Metrics

对于app端的专项测试,Android端我们可以用adb或者一些三方工具进行(例如itest)进行实时的性能监控,iOS端的话也可以用用一些三方的工具,但是需要嵌入到我们的项目当中,今天来介……

移动开发 Python使用redis-手机验证接口-发送短信验证

python使用redis 安装依赖 : pip3 install redis 直接使用 import redisr = redis.Redis(host= ‘ 127.0.0.1 ‘ , port=6379) 连接池的使用 import redispool = redis.ConnectionPool(host= ‘ 127.0.0.1 ‘ , port=6379 )r = redis.Redi……

移动开发 [LeetCode]283. 移动零

题目 给定一个数组 nums,编写一个函数将所有 0 移动到数组的末尾,同时保持非零元素的相对顺序。 示例: 输入: [0,1,0,3,12] 输出: [1,3,12,0,0] 说明: 必须在原数组上操作,不能拷贝额外的……