上一页 1 ··· 38 39 40 41 42 43 44 45 46 ··· 71 下一页
摘要: 通过以上两个方法查询到运行的system service后,就可以在dumpsys后面加上service的名字,查看指定的service信息。 // 查看Activity相关信息adb shell dumpsys activity// 查看CPU相关信息adb shell dumpsys cpuin 阅读全文
posted @ 2020-01-29 22:01 不带R的墨菲特 阅读(563) 评论(0) 推荐(0)
摘要: 1.某些APP安装在模拟器时提示“ this probably means that the app contains ARM native code and your Genymotion device cannot run ARM instructions. You should either 阅读全文
posted @ 2020-01-29 21:31 不带R的墨菲特 阅读(1119) 评论(0) 推荐(0)
摘要: 安卓tool: http://tools.android-studio.org/ SDK下载地址:http://dl.google.com/android/android-sdk_r24.4.1-windows.zip 安装:直接双击下一步,默认安装即可。 配置:打开SDK Manager(首次自动 阅读全文
posted @ 2020-01-29 18:53 不带R的墨菲特 阅读(897) 评论(0) 推荐(0)
摘要: 下载:https://www.genymotion.com/download/ 安装前先注册: https://www.runoob.com/w3cnote/android-tutorial-genymotion-install.html 使用官方help 3.0 document:https:// 阅读全文
posted @ 2020-01-28 22:39 不带R的墨菲特 阅读(190) 评论(0) 推荐(0)
摘要: 实例 1 : 使用 update() 方法,第二个参数合并第一个参数 def Merge(dict1, dict2): return(dict2.update(dict1)) 实例 2 : 使用 **,函数将参数以字典的形式导入 def Merge(dict1, dict2): res = {**d 阅读全文
posted @ 2020-01-28 21:59 不带R的墨菲特 阅读(240) 评论(0) 推荐(0)
摘要: 实例 以下实例演示了 walk() 方法的使用: #!/usr/bin/python # -*- coding: UTF-8 -*- import os for root, dirs, files in os.walk(".", topdown=False): for name in files: 阅读全文
posted @ 2020-01-28 21:58 不带R的墨菲特 阅读(179) 评论(0) 推荐(0)
摘要: import java.util.*;public class EntrySets { public static void main(String[] args) { Map<Object, Object> map = new HashMap<Object, Object>(); map.put( 阅读全文
posted @ 2020-01-25 21:24 不带R的墨菲特 阅读(11997) 评论(0) 推荐(1)
摘要: import java.util.HashMap; import java.util.Map; public class EntrySets { public static void main(String[] args) { Map<Object, Object> map = new HashMa 阅读全文
posted @ 2020-01-25 20:43 不带R的墨菲特 阅读(867) 评论(0) 推荐(0)
摘要: import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONArray; import com.alibaba.fastjson.JSONObject ; import com.alibaba.fastjson.JSONPath 阅读全文
posted @ 2020-01-25 19:12 不带R的墨菲特 阅读(742) 评论(0) 推荐(0)
摘要: 1.Thread实现: import java.util.Date; import java.text.SimpleDateFormat; public class MyThread extends Thread{ @Override public void run(){ SimpleDateFor 阅读全文
posted @ 2020-01-23 21:22 不带R的墨菲特 阅读(362) 评论(0) 推荐(0)
上一页 1 ··· 38 39 40 41 42 43 44 45 46 ··· 71 下一页