摘要: 下载地址: https://www.lanzous.com/iaz9yqj 1. https://www.cockos.com/licecap/ 录制的帧率。帧率越大,效果越好,文件大小越大 2. GifCam http://blog.bahraniapps.com/gifcam/ 阅读全文
posted @ 2017-09-23 22:49 行走的思想 阅读(171) 评论(0) 推荐(0)
摘要: 1. Windows下使用android ADT工具dmtracedump.exe绘图在windows下使用dmtracedump绘图时,出现如下错误: 'dot' 不是内部或外部命令,也不是可运行的程序或批处理文件。 应该是没有dot这个执行程序,安装:Graphviz程序,然后将该程序的安装路径 阅读全文
posted @ 2017-09-23 22:44 行走的思想 阅读(820) 评论(0) 推荐(0)
摘要: http://www.hawstein.com/posts/google-java-style.html Google Java编程风格指南 作者:Hawstein出处:http://hawstein.com/posts/google-java-style.html声明:本文采用以下协议进行授权:  阅读全文
posted @ 2017-09-23 22:08 行走的思想 阅读(402) 评论(0) 推荐(0)
摘要: http://google.github.io/styleguide/javaguide.html Google Java Style Guide Table of Contents 1 Introduction1.1 Terminology notes1.2 Guide notes2 Source 阅读全文
posted @ 2017-09-23 22:06 行走的思想 阅读(539) 评论(0) 推荐(0)
摘要: import android.provider.Settings; import android.text.TextUtils; 获取默认输入法包名: private String getDefaultInputMethodPkgName(Context context) { String mDefaultInputMethodPkg = null; ... 阅读全文
posted @ 2017-09-23 21:46 行走的思想 阅读(3446) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/onelikeone/p/13469185.html xargs 命令教程 同时执行多条命令、多个命令 在linux下面工作,有些命令能够大大提高效率。本文就向大家介绍find、grep命令,他哥俩可以算是必会的linux命令,我几乎每天都要用到他们。 阅读全文
posted @ 2017-09-23 21:44 行走的思想 阅读(4811) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2017-09-23 21:34 行走的思想 阅读(1) 评论(0) 推荐(0)
摘要: /** * Remove list duplicate item * * @param srcList * @return */ private static ArrayList removeListDuplicateItemWithOrder( List srcList) { Arra... 阅读全文
posted @ 2017-09-23 21:29 行走的思想 阅读(915) 评论(0) 推荐(0)
摘要: @Override public boolean onCreateOptionsMenu(Menu menu) { // We only want to show it as a menu in landscape, and only for clock/alarm fragment. ... 阅读全文
posted @ 2017-09-23 21:27 行走的思想 阅读(2659) 评论(0) 推荐(0)
摘要: private void setHomeTimeZone() { SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this); String homeTimeZone = prefs.getString(SettingsActivity.KEY_HOME_TZ, ... 阅读全文
posted @ 2017-09-23 21:25 行走的思想 阅读(266) 评论(0) 推荐(0)
摘要: 第一种方法: private boolean isRtl() { return TextUtils.getLayoutDirectionFromLocale(Locale.getDefault()) == View.LAYOUT_DIRECTION_RTL; } 第二种方法: /** * Check 阅读全文
posted @ 2017-09-23 21:17 行走的思想 阅读(3881) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2017-09-23 21:11 行走的思想 阅读(2) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2017-09-23 21:08 行走的思想 阅读(5) 评论(0) 推荐(0)