PrincipleComputer 进制运算的基本知识整数二进制2进制转10进制: 重复除2取余数 小数二进制 :𝑁= 0.11001 =1∗2−1+1∗2−2+1∗2−5=0.78125=25 / 32 (小数)十进制转换二进制:重复相乘法 二进制数据的表示方法原码 原码表示法 使用0表示正数、1表示负数 规定符号位位于数值第一位 表达简单明了,是人类最容易理解的表示法 0有两种表示方法:00 , 10 缺陷 但是 2019-04-08 Organization
Popupwindow 使用showAtLocation1234public void showAtLocation(View parent, int gravity, int x, int y) { mParentRootView = new WeakReference<>(parent.getRootView()); showAtLocation(parent.getWi 2019-03-26 ANDROID
View_Practice 绘制心电图 https://github.com/SeekerFighter/LuckyEcgDemo https://www.jianshu.com/p/16301de41a18 表单输入 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051/** * EditT 2019-01-01 VIEW #VIEW
view_custom_practice 绘制心电图 https://github.com/SeekerFighter/LuckyEcgDemo https://www.jianshu.com/p/16301de41a18 表单输入 1234567891011121314151617181920212223242526272829303132333435363738/** * EditText文字固定在右边 */public class 2019-01-01 VIEW #VIEW
MediaPlayer https://developer.android.com/reference/android/media/MediaPlayer http://www.runoob.com/w3cnote/android-tutorial-mediaplayer.html 这张状态转换图清晰的描述了MediaPlayer的各个状态,也列举了主要的方法的调用时序,每种方法只能在一些特定的状态下使用,如果使用时M 2018-11-18 ANDROID
mina MINA配置 下载 http://mina.apache.org/mina-project/downloads.html apache-mina-2.0.19-bin.zip 解压 下载 https://www.slf4j.org/download.html slf4j-1.7.25.zip解压 在MineUtil项目中有demo实现 IM键盘 https://juejin.im/po 2018-11-03 JAVA
GestureDetector GestureDetector总结 https://blog.csdn.net/harvic880925/article/details/39520901 切换动画 https://blog.csdn.net/u013309870/article/details/52873515 http://www.jcodecraeer.com/a/basictutorial/2016/1014/6672.h 2018-08-13 ANDROID
AndroidSource Android docker 史上最简单Android源码编译环境搭建方法 | Weishu’s Notes https://source.android.com/docs/setup/start/requirements#setting-up-a-linux-build-environment https://www.zhihu.com/people/tian-weishu/answers?pa 2018-07-25 ANDROID #AOSP
ViewDynamic 动态添加布局LinearLayout添加 父容器 123456<LinearLayout android:id="@+id/ll_plan_one" android:layout_width="match_parent" android:layout_height="wrap_content" android 2018-07-17 ANDROID
Lambda http://blog.oneapm.com/apm-tech/226.html android https://maxwell-nc.github.io/android/retrolambda.html https://cloud.tencent.com/developer/article/1526621 https://juejin.im/post/6844903668592934925 k 2018-07-11 JAVA