Keyboard https://developer.android.com/training/keyboard-input/style.html 12345678910111213141516171819 static Timer timer = new Timer(); timer.schedule(new TimerTask() { @Override 2017-12-21 ANDROID #keyboard
proguard Proguard VS R8Note: R8 doesn’t let you disable or enable specific optimizations, or modify the behavior of an optimization. In fact, R8 ignores any ProGuard rules that attempt to modify default optimi 2017-12-19 ANDROID #proguard
NewFeatures ANDROID新特性 apk安装 StrictMode API政策 在AndroidManifest.xml添加 12345678<provider android:name="android.support.v4.content.FileProvider" android:authorities=&q 2017-12-17 ANDROID #AndroidNewFeatures
Dialog Dialoghttps://developer.android.com/guide/topics/ui/dialogs.htmlhttps://developer.android.com/reference/android/app/DialogFragment.html 中间弹出123456789101112131415161718192021222324252627282930313233343 2017-12-11 ANDROID
LOG Timber 添加库 implementation 'com.jakewharton.timber:timber:4.6.0' **注意 **: 一开始日志打印不了还以为 okhttplogger冲突,BuildConfig需要导入项目的包import com.jonzhou.nytime.BuildConfig;,而不是Timber或其他的包 123456789101 2017-12-09 ANDROID
Permission https://developer.android.com/training/permissions/requesting https://developer.android.com/guide/topics/permissions/overview#normal-dangerous 权限管理Normal permissionsDangerous permissions Android11权限申 2017-12-02 ANDROID
English-Pronounce BOOK 1个练习1个月 让你职场英文流利自信! - YouTube James Clear: Atomic Habits Atomic Habits by James Clear (Audiobook) - YouTube The Almanac of Naval Ravikant https://archive.org/details/the-almanack-of-naval-ravikan 2017-11-23 #ENGLISH
ubuntu_server Linux下上传http://www.jianshu.com/p/c3e4f96ced97在html目录下放文件就可以了 scp /home/jon/桌面/img.jpg root@45.77.222.97:/var/www/html/ nexus-3.20.0-04: not a regular file scp -r /home/jon/桌面/img.jpg root@45.77.22 2017-11-20 TOOL
view_flow 自定义View函数调用流程 构造函数执行一次 onMeasure(), onLayout(), onDraw()都可能运行很多次。 所以onMeasure() 用的变量不能在构造方法初始化。 http://www.gcssloop.com/category/customview.html 窗口显示 每个Activity包含一个Window对象,Android中window对象由PhoneW 2017-11-12 VIEW
View_CanvasApi Canvas的常用操作速查表 操作类型 相关API 备注 绘制颜色 drawColor, drawRGB, drawARGB 使用单一颜色填充整个画布 绘制基本形状 drawPoint, drawPoints, drawLine, drawLines, drawRect, drawRoundRect, drawOval, drawCircle, drawArc 依次为 点、线、矩形、 2017-11-12 VIEW #VIEW