構(gòu)建工具
1.Groovy語法
http://wiki.jikexueyuan.com/project/deep-android-gradle/three-one.html
2.gradle 介紹
http://wiki.jikexueyuan.com/project/deep-android-gradle/four-one.html
簡單的gradle構(gòu)建文件
http://avatarqing.github.io/Gradle-Plugin-User-Guide-Chinese-Verision/basic_project/simple_build_files.html
Product flavors(不同定制的產(chǎn)品)
http://avatarqing.github.io/Gradle-Plugin-User-Guide-Chinese-Verision/build_variants/product_flavors.html
Android程序
1.Android程序入口以及項(xiàng)目文件夾的含義和使用總結(jié)—入門
http://www.cnblogs.com/mingjiatang/p/5978538.html
應(yīng)用基礎(chǔ)知識:應(yīng)用組件和啟動組件,清單文件
https://developer.android.com/guide/components/fundamentals.html
Activity,Service,BroadcaseReceiver(全局的監(jiān)聽器),應(yīng)用程序采用了一致的方式來啟動它們影所,都是依靠Intent來進(jìn)行啟動的,Intent就封裝了想要啟動程序的意圖氓润,還可用于被啟動組件交換信息。
啟動 Activity:
Activity 表示應(yīng)用中的一個(gè)屏幕。通過將 Intent 傳遞給 startActivity(),您可以啟動新的 Activity 實(shí)例。Intent 描述了要啟動的 Activity缅叠,并攜帶了任何必要的數(shù)據(jù)。
如果您希望在 Activity 完成后收到結(jié)果虏冻,請調(diào)用 startActivityForResult()肤粱。在 Activity 的 onActivityResult() 回調(diào)中,您的 Activity 將結(jié)果作為單獨(dú)的 Intent 對象接收兄旬。如需了解詳細(xì)信息狼犯,請參閱 Activity 指南。
啟動服務(wù):
Service 是一個(gè)不使用用戶界面而在后臺執(zhí)行操作的組件领铐。通過將 Intent 傳遞給 startService()悯森,您可以啟動服務(wù)執(zhí)行一次性操作(例如,下載文件)绪撵。Intent 描述了要啟動的服務(wù)瓢姻,并攜帶了任何必要的數(shù)據(jù)。
如果服務(wù)旨在使用客戶端-服務(wù)器接口音诈,則通過將 Intent 傳遞給 bindService()幻碱,您可以從其他組件綁定到此服務(wù)。如需了解詳細(xì)信息细溅,請參閱服務(wù)指南褥傍。
傳遞廣播:
廣播是任何應(yīng)用均可接收的消息。系統(tǒng)將針對系統(tǒng)事件(例如:系統(tǒng)啟動或設(shè)備開始充電時(shí))傳遞各種廣播喇聊。通過將 Intent 傳遞給 sendBroadcast()恍风、sendOrderedBroadcast() 或 sendStickyBroadcast(),您可以將廣播傳遞給其他應(yīng)用誓篱。
2.Activity
https://developer.android.com/guide/components/activities.html
任務(wù)和返回棧
https://developer.android.com/guide/components/tasks-and-back-stack.html
向用戶發(fā)送通知
一旦運(yùn)行起來朋贬,服務(wù)即可使用 Toast 通知或狀態(tài)欄通知來通知用戶所發(fā)生的事件。
Toast 通知是指出現(xiàn)在當(dāng)前窗口的表面窜骄、片刻隨即消失不見的消息锦募,而狀態(tài)欄通知則在狀態(tài)欄中隨消息一起提供圖標(biāo),用戶可以選擇該圖標(biāo)來采取操作(例如啟動 Activity)邻遏。
通常糠亩,當(dāng)某些后臺工作已經(jīng)完成(例如文件下載完成)且用戶現(xiàn)在可以對其進(jìn)行操作時(shí)虐骑,狀態(tài)欄通知是最佳方法。 當(dāng)用戶從展開視圖中選定通知時(shí)削解,通知即可啟動 Activity(例如查看已下載的文件)富弦。
狀態(tài)欄通知
https://developer.android.com/guide/topics/ui/notifiers/notifications.html
訪問資源
https://developer.android.com/guide/topics/resources/accessing-resources.html
BroadcaseReceiver(廣播):
注冊方式區(qū)別
http://www.cnblogs.com/net168/p/3980068.html
詳細(xì)介紹,系統(tǒng)廣播氛驮,開機(jī)自啟動demo
http://www.vogella.com/tutorials/AndroidBroadcastReceiver/article.html#life-cycle-of-a-broadcast-receiver
廣播接收次序
http://www.cnblogs.com/net168/p/3980068.html
api:
https://developer.android.com/reference/android/content/BroadcastReceiver.html
intent:
https://developer.android.com/guide/components/intents-filters.html
匹配原則
http://blog.csdn.net/mynameishuangshuai/article/details/51673273
service:
https://developer.android.com/guide/components/services.html
Android進(jìn)程保活招式大全
http://dev.qq.com/topic/57ac4a0ea374c75371c08ce8
https://developer.android.com/guide/components/processes-and-threads.html?hl=zh-cn
http://blog.csdn.net/primer_programer/article/details/25987439