码迷,mamicode.com
首页 > 移动开发
call() 和 apply() -this的情况
function fun(a,b){ console.log("a = "+ a); console.log("b = "+ b); alert(this); } var obj= { name:"obj", sayName:function(){ alert(this.name); } }; /* ...
分类:移动开发   时间:2021-05-23 23:39:03    阅读次数:0
VUE移动端音乐APP学习【十六】:播放器歌词显示开发
播放器歌词数据抓取 在api文件夹下创建song.js 设置获取歌曲api import axios from 'axios'; export function getLyric(id) { return axios.get(`/api/lyric?id=${id}`); } 把这个方法封装到com ...
分类:移动开发   时间:2021-05-23 23:35:55    阅读次数:0
springboot 安卓实验室设备管理系统web后台+app+5篇毕业文档
下载地址:https://download.csdn.net/download/qq_31293575/10728702 项目介绍 springboot 安卓实验室设备管理系统web后台+app+5篇毕业文档 功能说明: WEB系统面向三类用户授权,共有三种登录模式,包括后台管理员登录模式、实验管理 ...
分类:移动开发   时间:2021-05-23 22:58:40    阅读次数:0
Python列表中append输出None问题
原代码: list= [1,2,3,4]list= list.append(5)print(list)输出: None问题分析append使用注意事项:append方法只是在恰当的位置修改原来的列表!也就是说,不是返回一个列表,而只是修改原来的列表,所以如果用 等式 输出的话,返回是None 。去掉 ...
分类:移动开发   时间:2021-05-04 16:15:10    阅读次数:0
简单的流式布局(移动应用开发)
1.首先创建一个自定义View类: public class CustomView extends ViewGroup { private int mleftMargin=20; private int mtopMargin=20; public CustomView(Context context ...
分类:移动开发   时间:2021-05-03 12:48:19    阅读次数:0
VS2017 配置 Visual Studio Emulator for Android
Ø 简介 本文介绍使用 VS2017 配置 Visual Studio Emulator for Android 的模拟器,Windows 环境为:Windows 10 专业版(版本号:1803),开发环境为:Visual Studio 2017(企业版:15.9.11) 1. 开启 Hyper-V ...
分类:移动开发   时间:2021-05-03 12:36:34    阅读次数:0
Weather APP
Hackthebox的web挑战之Weather APP,解题思路及总结。 ...
分类:移动开发   时间:2021-05-03 12:04:47    阅读次数:0
Android7.1 logd 日志记录缓冲区大小
Android logd日志原理 http://gityuan.com/2018/01/27/android-log/ 一.先看上层 1.1. 布局 KEY private static final String SELECT_LOGD_SIZE_KEY = "select_logd_size"; ...
分类:移动开发   时间:2021-05-03 11:48:30    阅读次数:0
adb连接安卓设备失败failed to start daemon
adb连接安卓设备失败failed to start daemon Reference:https://blog.csdn.net/whshuo2010/article/details/51094495?locationNum=8 背景 连接设备后,使用adb devices命令查看目前连接的设备, ...
分类:移动开发   时间:2021-05-03 11:40:13    阅读次数:0
Android 7.1 emmc 存储总大小
一.adb 命令 cat /proc/partitions mmcblk1 mmcblk2 二.Andoird 7.1.1 以上查询 7.1.1 版本之后才有 getPrimaryStorageSize() 2.1. packages/apps/Settings/src/com/android/se ...
分类:移动开发   时间:2021-04-30 12:44:10    阅读次数:0
uniapp——禁用原生导航栏
禁用原生导航栏,APP、h5和微信小程序禁用的方法不一样哦,在page.json中配置 { "path": "pages/index/index", "style": { "navigationBarTitleText": "首页", "navigationStyle": "custom",//禁用 ...
分类:移动开发   时间:2021-04-30 12:06:06    阅读次数:0
打印手机
package com.itheima.demo02; public class DingYiShouJi { public static void main(String[] args) { String name1 ="华为 HUAWEI Mate 30E Pro 5G麒麟990E SoC芯片 ...
分类:移动开发   时间:2021-04-30 11:58:04    阅读次数:0
SpringBoot之@ComponentScan和@SpringBootApplication扫描覆盖问题
SpringBoot之@ComponentScan和@SpringBootApplication扫描覆盖问题 ...
分类:移动开发   时间:2021-04-30 11:56:23    阅读次数:0
Android NFC读取数据
1、添加相应的权限和gradle引用<uses-feature android:name="android.hardware.nfc" android:required="true"/><uses-permission android:name="android.permission.NFC"/>a ...
分类:移动开发   时间:2021-04-29 12:22:33    阅读次数:0
bootstrapping中标准差计算
根据文献,我需要的bootstrapping标准差为 d(t)是我的原始叠加结果,b(t)是第i次bootstrapping的结果。 而Matlab中std函数提供的标准差: 所以直接采用std计算bootstrapping的标准差是不行的 所以写了一个bootstrapping的标准差的脚本: f ...
分类:移动开发   时间:2021-04-29 12:21:43    阅读次数:0
【转】完美解决Android 9.0以上HTTP网络请求被限制问题
遇到问题 Android P 9.0以上系统,HTTP网络被限制。HTTPS无影响。 Android 10系统同样的问题。 Android P以上要求网络请求必须为Https,Http请求会抛异常。 原因分析 Android P以上的应用默认都被限制了明文流量的网络请求,非加密的流量请求都会被系统禁 ...
分类:移动开发   时间:2021-04-29 12:06:45    阅读次数:0
AppendTargetFrameworkToOutputPath
<PropertyGroup> <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath> <AppendRuntimeIdentifierToOutputPath>false</AppendRuntime ...
分类:移动开发   时间:2021-04-29 12:04:19    阅读次数:0
152761条   上一页 1 ... 15 16 17 18 19 20 21 ... 8986 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!