移动平台-周排行
安卓对图标着色以节省apk体积,网上有很多介绍到的,使用也很简单<ImageView android:tint="@android:color/white" android:backgroundTint="@android:color/black" />平时都这样使用,今天得在代码中改,所以记录一下第一种Drawableicon; if(android.os.Build.VERSION.SDK_I..
分类:移动平台 时间:2016-08-26 23:09:55 收藏:0 阅读:1113
void QApplication::alert(QWidget * widget, int msec = 0)如果窗口不是活动窗口,则会向窗口显示一个警告。警报会显示msec 毫秒。如果毫秒为零,闪烁一段时间后会停止,任务栏图标会一直亮着。widget.h #ifndef WIDGET_H #de ...
分类:移动平台 时间:2016-10-27 20:49:05 收藏:0 阅读:511
参考资料: http://jingyan.baidu.com/article/948f592408e07bd80ff5f9a9.html http://www.linuxidc.com/Linux/2015-05/117919p2.htm 1、首先启动android studio,在工具栏选择Too ...
分类:移动平台 时间:2016-12-17 22:19:28 收藏:0 阅读:675
<input type="file" accept="image/*"><input type="file" accept="video/*"><input type="file" accept="audio/*"> 分别是下面的情况 ...
分类:移动平台 时间:2017-01-19 12:40:41 收藏:0 阅读:3619
iOS动画详解(学习动画看这一篇就够了) 一、基础知识 CAAnimation.png 二、CABasicAnimation 1. 动画的属性和解释 2.属性值的解释 repeatCount : 如果在swift中需要一直不断重复:Float.infinity,OC:HUGE_VALF timing ...
分类:移动平台 时间:2017-02-04 10:57:39 收藏:0 阅读:575
1、添加判断标识 2、添加事件监听 addEventListener 注:如需移除事件监听,应按以下写法 ...
分类:移动平台 时间:2017-04-26 15:21:23 收藏:0 阅读:479
最近使用google的oauth认证,发现不再允许使用UIWebview进行认证了,必须使用系统游览器,使用游览器也不一定要在app之间跳转,ios使用SFSafariViewController就可以达到要求, google提供了demo:https://github.com/google/GTM ...
分类:移动平台 时间:2017-05-10 10:54:00 收藏:0 阅读:725
View cv = getWindow().getDecorView();来自为知笔记(Wiz) ...
分类:移动平台 时间:2017-05-25 18:48:22 收藏:0 阅读:501
win7旗舰版 64位 + vs2015 专业版 1、安装VS2015过程中可能需要用到的VS2015专业版钥匙:(测试,可用) 2、VS2015打开失败,弹出因为计算机丢失msvcp140.dll 解决方法:去脚本之家网上下载,其连接地址:http://www.jb51.net/dll/msvcp ...
分类:移动平台 时间:2017-06-16 14:05:18 收藏:0 阅读:3213
先来看一下DOTweenPath组件的截图 1、Scene View Commands (1)SHIFT+CTRL:add a waypoint 加一个轨迹点 (2)SHIFT+ALT:remove a waypoint 移除一个轨迹点 2、INfo (1)Path Length:轨迹长度 3、Tw ...
分类:移动平台 时间:2017-08-05 14:36:00 收藏:0 阅读:4128
1. 2. 3. 4. 安装91助手后,在电脑上,会提示你安装驱动和开启USB助手工具。 5. 然后一步一步执行就可以了。 ...
分类:移动平台 时间:2017-08-22 13:50:32 收藏:0 阅读:982
第一次写博客,各种不足之处还望理解。 由于项目需要,项目经理在原来的ssm+duubo+mq框架上加入jmapper框架,本来以为是一个很简单的ORM框架,几天就搞定了。谁知道自己太笨,整了近一个月才把业务嵌入里面去,虽然不是全部时间来调研这个框架,但是来来回回拖了一个月,着实有点太忙。 细想下,也 ...
分类:移动平台 时间:2017-11-11 19:37:38 收藏:0 阅读:812
axios({ url: '/api/index/getIndexlbt', method: 'post', data: { relevanceId:this.$route.params.id, pictureType:4 }, ... ...
分类:移动平台 时间:2017-11-15 21:04:15 收藏:0 阅读:863
感谢大神(已解决)http://blog.csdn.net/testcs_dn/article/details/50317239 ...
分类:移动平台 时间:2018-01-15 11:59:49 收藏:0 阅读:902
问题报错提示: 问题原因: Appium在真机上运行时会自动在手机中安装2个apk,分别为:settings_apk-debug.apk和unlock_apk-debug.apk,此2个apk在电脑中存放的路径为:D:\AutoTest\appium\Appium\node_modules\appi ...
分类:移动平台 时间:2018-01-15 18:31:11 收藏:0 阅读:6993
在Java Web 编程时,需要配置web.xml,但有时会出现如下错误提示: The content of element type "web-app" must match "(icon?,display- name?,description?,distributable?,context-pa ...
分类:移动平台 时间:2018-03-26 18:28:06 收藏:0 阅读:686
使用springboot完成一对一,一对多: https://blog.csdn.net/KingBoyWorld/article/details/78966789 传统的mapper文件中的一对一,一对多: 一对一: 主要是<resultMap>与<association> 一对多: 主要是<co ...
分类:移动平台 时间:2018-03-28 15:10:57 收藏:0 阅读:795
1 //ClickMove - - 通过鼠标点击控制物体移动 2 3 using System.Collections; 4 using System.Collections.Generic; 5 using UnityEngine; 6 using UnityEngine.AI; // inclu ...
分类:移动平台 时间:2018-05-16 23:40:33 收藏:0 阅读:625
adb shell dumpsys activity activities | findstr mFocusedActivity Android 7.0 现象: Android 8.0 现象: 改用: adb shell dumpsys activity activities | findstr m ...
分类:移动平台 时间:2018-05-25 18:52:16 收藏:0 阅读:4009
Spring Boot 启用应用: error: No mapping found for HTTP request with URI [/…] in DispatcherServlet with name 'dispatcherServlet' solution: @SpringBootAppli ...
分类:移动平台 时间:2018-06-01 18:05:22 收藏:0 阅读:1801
123242526278121
上一页162412下一页
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!