Welcome to Ray's Blog

Stay Hungry Stay Foolish - Steve Jobs

0%

原理

将手机上已安装 apk 文件与服务器端最新 apk 进行二进制对比,得到差分包。用户更新应用程序时,只需要下载差分包(patch),并在本地将下载的差分包与已安装 apk 合并成新的 apk 文件,然后安装合成后的新 apk 文件。

Read more »


SPDY 定义

  1. SPDY 是 Google 开发的基于传输控制协议(TCP)的应用层协议,开发组正在推动 SPDY 成为正式标准(目前为草案);
  2. SPDY 协议旨在通过压缩、多路复用和优先级来缩短网页的加载时间和强制使用 SSL 协议来提高安全性。
Read more »


RxJava 定义

** a library for composing(组成) asynchronous and event-based programs using observable sequences for the java VM (一个在 Java VM 上使用可观测的序列来组成的异步的、基于事件的程序的库);**

Read more »

God

I love U, Yuanyuan!

		--- Chenley 20160920


所有的百度地图 SDK 在使用时,必须先调用SDKInitializer.initialize(Context context)方法进行初始化。

  • MapStaus地图状态。可以设置地图的中心点、缩放级别、仰望角、旋转角。该类是 final 类,要用MapStaus.Builder构造
  • Overlay覆盖物。该类为抽象类。其子类有Arc弧线、Circle圆、 Dot圆点、GroundOverlay矩形区域、Marker标记、Polygon多边形、Polyline折线、Text文本
Read more »

Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.

Quick Start

Create a new post

1
$ hexo new "My New Post"

More info: Writing

Run server

1
$ hexo server

More info: Server

Generate static files

1
$ hexo generate

More info: Generating

Deploy to remote sites

1
$ hexo deploy

More info: Deployment