摘要: 1.安装:http://www.jb51.net/article/32616.htm 2.修改密码:http://www.cnblogs.com/xujiating/p/6337511.html 3.使用Oracle创建数据库,SQL developer连接数据库简要步骤:http://blog.c 阅读全文
posted @ 2017-08-09 11:45 Melvon 阅读(150) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/env monkeyrunner # Copyright 2010, The Android Open Source Project# # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at# # http://www.apache.org/licenses/LICENSE-2.0# # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF 阅读全文
posted @ 2017-07-04 10:54 Melvon 阅读(253) 评论(0) 推荐(0) 编辑
摘要: 1. Uiautomator1.0 Uiautomator2.0 date 2012 2015 super class UiAutomatorTestCase InstrumentationTestCase language java java executable file jar APK API 阅读全文
posted @ 2017-05-25 11:46 Melvon 阅读(2604) 评论(0) 推荐(0) 编辑
摘要: 第一步、环境准备: 1.JDK(是的,你没看错,基础的android开发环境必备),以及对应的环境变量配置,不会的可以自己百度下下 2.eclispse(IDE尊崇个人意愿) 3.android SDK以及配置 4.ANT(主要用于build我们的脚本,生成jar包) ant的搭建主要分几步:1.下 阅读全文
posted @ 2017-05-18 13:58 Melvon 阅读(802) 评论(0) 推荐(0) 编辑
摘要: adb shell dumpsys activity activities | findstr "Run" 阅读全文
posted @ 2017-05-10 13:49 Melvon 阅读(577) 评论(0) 推荐(0) 编辑
摘要: 1. bootloader 当我们拿到一款手机,第一件事应该就是按下电源键开机,那么从开机到进入到桌面程序这中间发生了些什么呢,我们从下面这张简化了的手机结构图开始: 注意:该结构图并不反映手机的实际分区顺序和位置,只是一个逻辑结构图。 大家可以简单的把手机的ROM存储类比为我们电脑上的硬盘,这个硬 阅读全文
posted @ 2017-04-17 18:10 Melvon 阅读(11138) 评论(0) 推荐(2) 编辑
摘要: 简要步骤:adb devices 了解包名--adb shell monkey -p 包名 -v 运行次数(多个参数的组合形成不同的用例以求最大的覆盖)--当崩溃或无响应时分析monkey日志 常规monkey命令(可直接在项目里使用): adb shell monkey -p com.jiocha 阅读全文
posted @ 2017-04-14 10:56 Melvon 阅读(32642) 评论(0) 推荐(2) 编辑
摘要: 如何结束返回值是void的方法? return;只能够出现在方法类型是void 的方法中,用来结束方法。 return后面还可以跟数据,后面的数据可以是整数、字符串、false、ture、小数、主要看你方法的返回值类型是什么了。如果不返回,java程序是无法通过的。 public class Met 阅读全文
posted @ 2017-04-01 11:43 Melvon 阅读(4121) 评论(0) 推荐(0) 编辑
摘要: java中的方法:就相当于c语言中的函数;sun在开发java的时候,为提高其代码的重复利用率,引入了方法。 什么是方法? 方法就是一段代码片段,这个片段可以完成特定的功能,并且可以重复利用。 从入口程序那里开始调用,一掉就开始执行指定的方法。 定义方法的语法: [方法的修饰符列表] 方法的返回值类 阅读全文
posted @ 2017-04-01 11:42 Melvon 阅读(232) 评论(0) 推荐(0) 编辑