在线观看不卡亚洲电影_亚洲妓女99综合网_91青青青亚洲娱乐在线观看_日韩无码高清综合久久

鍍金池/ 教程/ Android/ <a rel="nofollow" href="http://www.vogella.com/tutorials/Android
Launch mode 和 Intent flags專題
Canvas &amp; Drawables
UTAustinX_UT.9.01x: Effective Thinking Through Mathematics
《JavaScript 語言精粹》
Memory leak專題
React基礎(chǔ)
《Test Driven Development: By Example》一書
Developer tools
安卓開發(fā)技能樹
<a rel="nofollow" href="https://mp.weixin.qq.com/s?__biz=MzA3NDM
Best Practices for Interaction and Engagement
各個(gè)安卓版本引入的主要新特性
Building Apps with Connectivity &amp; the Cloud
List.toArray()再強(qiáng)轉(zhuǎn)是一定會(huì)失敗的
深入Android frameworks
Google dev 100 days系列視頻
Building Apps with Contacts &amp; Sign-In
關(guān)系型數(shù)據(jù)庫設(shè)計(jì)范式
《App研發(fā)錄》一書
REST API設(shè)計(jì)
Google IO 2015摘要
自定義View/ViewGroup以及高性能實(shí)現(xiàn)自定義UI
安卓系統(tǒng)點(diǎn)擊事件處理
《50 Android Hacks》一書
Building Apps with Content Sharing
Flux基礎(chǔ)
<a rel="nofollow" href="http://developer.android.com/training/in
依賴注入(以Dagger 2為例)
Java同步機(jī)制
Java對(duì)象內(nèi)存的使用情況
JSR133(Java memory model)
Google官方Material Design手冊(<a rel="nofollow" href="http://develop
Futurice公司安卓團(tuán)隊(duì)的建議
安卓性能優(yōu)化
  • 1.
Best Practices for Performance
<a rel="nofollow" href="http://www.vogella.com/tutorials/Android
<a rel="nofollow" href="http://blog.danlew.net/2014/11/19/styles
Handling Runtime Changes
<a rel="nofollow" href="http://www.vogella.com/tutorials/Android
Building Apps with Graphics &amp; Animation
<a rel="nofollow" href="http://tools.android.com/tech-docs/new-b
Android項(xiàng)目架構(gòu)
MVP(Model-View-Presenter)模式
<a rel="nofollow" href="http://www.infoq.com/cn/es6-in-depth/"">
《Android源碼設(shè)計(jì)模式解析與實(shí)戰(zhàn)》一書
Rx在Android中的最佳實(shí)踐
函數(shù)調(diào)用時(shí),傳遞參數(shù)應(yīng)該是不可變的(Immutable)
ProGuard
面向?qū)ο罅笤瓌t(SOLID+)
深入理解Java虛擬機(jī)
深入Java深淺拷貝、immutable、unmodifiable
Best Practices for User Input
UI上的一些高效方式/最佳實(shí)踐
<a rel="nofollow" href="https://blog.stylingandroid.com/ripples-
Best Practices for User Interface
安卓測試驅(qū)動(dòng)開發(fā)/安卓測試驗(yàn)證
暗時(shí)間:學(xué)會(huì)正確思考
技術(shù)筆記
Aspect Oriented Programming(AOP)
Best Practices for Background Jobs
安卓系統(tǒng)動(dòng)效專題
Feed系統(tǒng)的設(shè)計(jì)
Data binding(MVVM,Model-View-ViewModel)
Effective Java一書筆記
<a rel="nofollow" href="http://developer.android.com/training/in
Rx (Reactive eXtention)
MultiDex專題
一些很棒的點(diǎn)子
WebRTC

<a rel="nofollow" href="http://www.vogella.com/tutorials/Android

什么是Android

  • 安卓系統(tǒng)架構(gòu)圖:

http://wiki.jikexueyuan.com/project/notes/images/AndroidPlatformComponents.png" alt="AndroidPlatformComponents.png" />

安卓開發(fā)工具

  • Android RunTime(ART)

    • 安卓5.0使用ART技術(shù),在安裝應(yīng)用的時(shí)候,應(yīng)用程序代碼就被翻譯為機(jī)器碼,加快應(yīng)用程序運(yùn)行;
    • 將導(dǎo)致程序代碼增大30%左右,但能加速運(yùn)行、節(jié)約電量;
    • dex2oat工具負(fù)責(zé)將.dex文件轉(zhuǎn)換為ELF格式的文件,其中包含dex代碼、native代碼、meta-data等;
    • ART中的垃圾回收也進(jìn)行了優(yōu)化,以加速應(yīng)用程序的休眠與恢復(fù);
  • 從源碼到安卓應(yīng)用程序的過程

    • Java編譯器將java源碼編譯為.class文件;
    • SDK中的dx工具將.class文件打包為.dex文件(Dalvik Executable),這一過程會(huì)對(duì)重復(fù)信息進(jìn)行優(yōu)化;
    • aapt工具將.dex文件和資源文件(XML、圖片等)打包為.apk文件(Android Package);
    • adb工具將.apk文件安裝到設(shè)備上,并啟動(dòng)應(yīng)用程序;
  • 安全性:由Linux內(nèi)核保證
    • 每個(gè)應(yīng)用程序在底層系統(tǒng)中都有唯一的user和group id;
    • 應(yīng)用程序的文件是私有的,只有對(duì)應(yīng)的user才能訪問;
    • 每個(gè)應(yīng)用程序運(yùn)行在獨(dú)立的進(jìn)程;