Android開源項目第二篇——工具庫篇

轉載地址:http://blog.csdn.net/jdsjlzx/article/details/41576341
通過這些項目你可以大幅度減少不必要的開發而將精力放在更重要的地方。

一、依賴注入DI
通過依賴注入減少View、服務、資源簡化初始化,事件綁定等重複繁瑣工作
1. AndroidAnnotations(Code Diet) android快速開發框架
項目地址:https://github.com/excilys/androidannotations
文檔介紹:https://github.com/excilys/androidannotations/wiki
官方網站:http://androidannotations.org/
特點:(1)依賴注入:包括view,extras,系統服務,資源等等
(2)簡單的線程模型,通過annotation表示方法運行在ui線程還是後臺線程
(3)事件綁定:通過annotation表示view的響應事件,不用在寫內部類
(4)REST客戶端:定義客戶端接口,自動生成REST請求的實現
(5)沒有你想象的複雜:AndroidAnnotations只是在在編譯時生成相應子類
(6)不影響應用性能:僅50kb,在編譯時完成,不會對運行時有性能影響。
PS:與roboguice的比較:roboguice通過運行時讀取annotations進行反射,所以可能影響應用性能,而AndroidAnnotations在編譯時生成子類,所以對性能沒有影響

  1. roboguice 幫你處理了很多代碼異常,利用annotation使得更少的代碼完成項目
    項目地址:https://github.com/roboguice/roboguice
    文檔介紹:https://github.com/roboguice/roboguice/wiki

  2. butterknife 利用annotation幫你快速完成View的初始化,減少代碼
    項目地址:https://github.com/JakeWharton/butterknife
    文檔介紹:http://jakewharton.github.io/butterknife/

  3. Dagger 依賴注入,適用於Android和Java
    項目地址:https://github.com/square/dagger
    文檔介紹:http://square.github.io/dagger/

二、圖片緩存
1. Android-Universal-Image-Loader 圖片緩存
目前使用最廣泛的圖片緩存,支持主流圖片緩存的絕大多數特性。
項目地址:https://github.com/nostra13/Android-Universal-Image-Loader
Demo地址:https://github.com/Trinea/TrineaDownload/blob/master/universal-imageloader-demo.apk?raw=true
文檔介紹:http://www.intexsoft.com/blog/item/74-universal-image-loader-part-3.html

  1. picasso square開源的圖片緩存
    項目地址:https://github.com/square/picasso
    文檔介紹:http://square.github.io/picasso/
    特點:(1)可以自動檢測adapter的重用並取消之前的下載
    (2)圖片變換
    (3)可以加載本地資源
    (4)可以設置佔位資源
    (5)支持debug模式

  2. ImageCache 圖片緩存,包含內存和Sdcard緩存
    項目地址:https://github.com/Trinea/AndroidCommon
    Demo地址:https://play.google.com/store/apps/details?id=cn.trinea.android.demo
    文檔介紹:http://www.trinea.cn/?p=704
    特點:(1)支持預取新圖片,支持等待隊列
    (2)包含二級緩存,可自定義文件名保存規則
    (3)可選擇多種緩存算法(FIFO、LIFO、LRU、MRU、LFU、MFU等13種)或自定義緩存算法
    (4)可方便的保存及初始化恢復數據
    (5)支持不同類型網絡處理
    (6)可根據系統配置初始化緩存等

三、網絡相關
1. Asynchronous Http Client for Android Android異步Http請求
項目地址:https://github.com/loopj/android-async-http
文檔介紹:http://loopj.com/android-async-http/
特點:(1) 在匿名回調中處理請求結果
(2) 在UI線程外進行http請求
(3) 文件斷點上傳
(4) 智能重試
(5) 默認gzip壓縮
(6) 支持解析成Json格式
(7) 可將Cookies持久化到SharedPreferences

  1. android-query 異步加載,更少代碼完成Android加載
    項目地址:https://github.com/androidquery/androidqueryhttps://code.google.com/p/android-query/
    文檔介紹:https://code.google.com/p/android-query/#Why_AQuery?
    Demo地址:https://play.google.com/store/apps/details?id=com.androidquery
    特點:https://code.google.com/p/android-query/#Why_AQuery?

  2. Async Http Client Java異步Http請求
    項目地址:https://github.com/AsyncHttpClient/async-http-client
    文檔介紹:http://sonatype.github.io/async-http-client/

  3. Ion 支持圖片、json、http post等異步請求
    項目地址:https://github.com/koush/ion
    文檔介紹:https://github.com/koush/ion#more-examples

  4. HttpCache Http緩存
    項目地址:https://github.com/Trinea/AndroidCommon
    Demo地址:https://play.google.com/store/apps/details?id=cn.trinea.android.demo
    Demo代碼:https://github.com/Trinea/AndroidDemo/blob/master/src/cn/trinea/android/demo/HttpCacheDemo.java
    特點是:(1) 根據cache-control、expires緩存http請求
    (2) 支持同步、異步Http請求
    (3) 在匿名回調中處理請求結果
    (4) 在UI線程外進行http請求
    (5) 默認gzip壓縮

  5. Http Request
    項目地址:https://github.com/kevinsawicki/http-request
    文檔介紹:https://github.com/kevinsawicki/http-request#examples

  6. okhttp square開源的http工具類
    項目地址:https://github.com/square/okhttp
    文檔介紹:http://square.github.io/okhttp/
    特點:(1) 支持SPDY(http://zh.wikipedia.org/wiki/SPDY)協議。SPDY協議是Google開發的基於傳輸控制協議的應用層協議,通過壓縮,多路複用(一個TCP鏈接傳送網頁和圖片等資源)和優先級來縮短加載時間。
    (2) 如果SPDY不可用,利用連接池減少請求延遲
    (3) Gzip壓縮
    (4) Response緩存減少不必要的請求

  7. Retrofit RESTFUL API設計
    項目地址:https://github.com/square/retrofit
    文檔介紹:http://square.github.io/retrofit/

四、數據庫 orm工具包
orm的db工具類,簡化建表、查詢、更新、插入、事務、索引的操作
1. greenDAO Android Sqlite orm的db工具類
項目地址:https://github.com/greenrobot/greenDAO
文檔介紹:http://greendao-orm.com/documentation/
官方網站:http://greendao-orm.com/
特點:(1)性能佳
(2) 簡單易用的API
(3) 內存小好小
(4) 庫大小小

  1. ActiveAndroid Android Sqlite orm的db工具類
    項目地址:https://github.com/pardom/ActiveAndroid
    文檔介紹:https://github.com/pardom/ActiveAndroid/wiki/_pages

  2. Sprinkles Android Sqlite orm的db工具類
    項目地址:https://github.com/emilsjolander/sprinkles
    文檔介紹:http://emilsjolander.github.io/blog/2013/12/18/android-with-sprinkles/
    特點:比較顯著的特點就是配合https://github.com/square/retrofit能保存從服務器獲取的數據

五、Android公共庫
1. Guava Google的基於java1.6的類庫集合的擴展項目
包括collections, caching, primitives support, concurrency libraries, common annotations, string processing, I/O等等. 這些高質量的API可以使你的JAVa代碼更加優雅,更加簡潔
項目地址:https://code.google.com/p/guava-libraries/
文檔介紹:https://code.google.com/p/guava-libraries/wiki/GuavaExplained

  1. AndroidCommon Android公共庫
    項目地址:https://github.com/Trinea/AndroidCommon
    Demo地址:https://play.google.com/store/apps/details?id=cn.trinea.android.demo
    文檔介紹:http://www.trinea.cn/?p=778
    包括:(1)緩存(圖片緩存、預取緩存、網絡緩存)
    (2) 公共View(下拉及底部加載更多ListView、底部加載更多ScrollView、滑動一頁Gallery)
    (3) Android常用工具類(網絡、下載、Android資源操作、shell、文件、Json、隨機數、Collection等等)

六、Android 高版本向低版本兼容
1. ActionBarSherlock 爲Android所有版本提供統一的ActionBar,解決4.0以下ActionBar的適配問題
項目地址:https://github.com/JakeWharton/ActionBarSherlock
Demo地址:https://play.google.com/store/apps/details?id=com.actionbarsherlock.sample.demos
APP示例:太多了。。現在連google都在用

  1. Nine Old Androids 將Android 3.0(Honeycomb)所有動畫API(ObjectAnimator ValueAnimator等)兼容到Android1.0
    項目地址:https://github.com/JakeWharton/NineOldAndroids
    Demo地址:https://play.google.com/store/apps/details?id=com.jakewharton.nineoldandroids.sample
    文檔介紹:http://nineoldandroids.com/

  2. HoloEverywhere 將Android 3.0的Holo主題兼容到Android2.1++
    項目地址:https://github.com/Prototik/HoloEverywhere
    Demo地址:https://raw.github.com/Prototik/HoloEverywhere/repo/org/holoeverywhere/demo/2.1.0/demo-2.1.0.apk
    文檔介紹:http://android-developers.blogspot.com/2012/01/holo-everywhere.html

七、多媒體相關
1. cocos2d-x 跨平臺的2d遊戲框架,支持Android、IOS、Linux、Windows等衆多平臺
項目地址:https://github.com/cocos2d/cocos2d-x
文檔介紹:http://www.cocos2d-x.org/wiki
官方網站:http://www.cocos2d-x.org/

  1. Vitamio 是一款Android與iOS平臺上的全能多媒體開發框架
    項目地址:https://github.com/yixia/VitamioBundle
    網站介紹:http://www.vitamio.org/docs/
    特點:(1) 全面支持硬件解碼與GPU渲染
    (2) 能夠流暢播放720P甚至1080P高清MKV,FLV,MP4,MOV,TS,RMVB等常見格式的視頻
    (3) 在Android與iOS上跨平臺支持 MMS, RTSP, RTMP, HLS(m3u8)等常見的多種視頻流媒體協議,包括點播與直播。

  2. PhotoProcessing 利用ndk處理圖片庫,支持Instafix、Ansel、Testino、XPro、Retro、BW、Sepia、Cyano、Georgia、Sahara、HDR、Rotate、Flip
    項目地址:https://github.com/lightbox/PhotoProcessing
    Demo地址:https://github.com/Trinea/TrineaDownload/blob/master/photo-processing.apk?raw=true

  3. Android StackBlur 圖片模糊效果工具類
    項目地址:https://github.com/kikoso/android-stackblur
    Demo地址:https://github.com/kikoso/android-stackblur/blob/master/StackBlurDemo/bin/StackBlurDemo.apk?raw=true
    文檔介紹:https://github.com/kikoso/android-stackblur#usage

八、其他
1. Salvage view 帶View緩存的Viewpager PagerAdapter,很方便使用
項目地址:https://github.com/JakeWharton/salvage

  1. Android-PasscodeLock 應用鎖,每次啓動或從任何Activity啓動應用都需要輸入四位數字的密碼方可進入
    項目地址:https://github.com/wordpress-mobile/Android-PasscodeLock
    Demo地址:https://play.google.com/store/apps/details?id=com.sothree.umano
    APP示例:Wordpress Android,支付寶,挖財

  2. android-lockpattern Android的圖案密碼解鎖
    項目地址:https://code.google.com/p/android-lockpattern/
    Demo地址:https://play.google.com/store/apps/details?id=group.pals.android.lib.ui.lockpattern.demo
    使用介紹:https://code.google.com/p/android-lockpattern/wiki/QuickUse
    示例APP:Android開機的圖案密碼解鎖,支付寶的密碼解鎖

  3. GlowPadBackport將Android4.2的鎖屏界面解鎖擴展到Android1.6及1.6+
    項目地址:https://github.com/rock3r/GlowPadBackport
    Demo地址:https://play.google.com/store/apps/details?id=net.sebastianopoggi.samples.ui.GlowPadSample
    效果圖:https://lh6.ggpht.com/U070b6Lh6cVsVwx4jN-5nq0xqiB1PBzrYABPeJIEe2hZQ5UWOxc-FDUG77wADelToHA=h310-rw

  4. GlowPadView Android4鎖屏界面解鎖
    項目地址:https://github.com/nadavfima/GlowPadView
    效果圖:https://raw.github.com/nadavfima/GlowPadView/master/example.png

  5. Android Priority Job Queue Android後臺任務隊列
    項目地址:https://github.com/path/android-priority-jobqueue
    文檔介紹:https://github.com/path/android-priority-jobqueue#getting-started

  6. jsoup 一個解析html的java庫,可方便的提取和操作數據
    項目地址:https://github.com/jhy/jsoup
    官方網站:http://jsoup.org/
    作用:(1) 從一個url、文件或string獲得html並解析
    (2) 利用dom遍歷或css選擇器查找、提取數據
    (3) 操作html元素
    (4) 根據白名單去除用於提交的非法數據防止xss攻擊
    (5) 輸出整齊的html

8.ZIP java壓縮和解壓庫
項目地址:https://github.com/zeroturnaround/zt-zip
文檔介紹:https://github.com/zeroturnaround/zt-zip#examples
作用:(1) 解壓和壓縮,並支持文件夾內遞歸操作
(2) 支持包含和排除某些元素
(3) 支持重命名元素
(4) 支持遍歷zip包內容
(5) 比較兩個zip包等功能

  1. Cobub Razor 開源的mobile行爲分析系統,包括web端、android端,支持ios和window phone
    項目地址:https://github.com/cobub/razor
    Demo地址:http://demo.cobub.com/razor
    網站介紹:http://dev.cobub.com/

  2. aFileChooser 文件選擇器,可內嵌到程序中,而無需使用系統或三方文件選擇器。
    項目地址:https://github.com/iPaulPro/aFileChooser

  3. androidpn 基於xmpp協議的消息推送解決方案,包括服務器端和android端。
    項目地址:https://github.com/dannytiehui/androidpn

  4. Android插件式開發
    項目地址:https://github.com/umeng/apf

最火的Android開源項目整理

一、代碼庫

1、from 代碼家
整理比較好的源碼連接


http://blog.zhan-dui.com/?page_id=60

感謝 “代碼家”整理

一、兼容類庫

ActionBarSherlock : Action Bar是Android 3.0後纔開始支持的,ActionBarSherlock是讓Action Bar功能支持2.X後的所有平臺,而且他會自動的判斷是調用原生Action Bar還是使用擴展ActionBar。在我的小熊詞典裏有用到這個庫,而且很多非常知名的App也在使用這個庫。GitHub Official ActionBar科普
Android-ViewPagerIndicator : 這是與ViewPager兼容的一個分頁指示器庫。分頁指示器(Friends 和 Suggested就是分頁,而下面藍色的小條就是指示器,ViewPagerIndicator支持多種樣式的指示器。):GitHub
NineOldAndroids : NineOldAndroids 將 Honeycomb (Android 3.0) 的動畫 API 擴展到了Android 1.0以上。這個庫的作者即是ActionBarSherlock的作者,也是Android-ViewPagerIndicator的作者,Jake Wharton, 非常厲害的一個人,Github關注量超過1.6K,如果你也做Android開發或者即將開始學習Android開發,一定要去Follow他,而且留意一下他每次的star和follow信息,經常會有很驚奇的發現。Jake Wharton
HoloEverywhere:在Android 4.0時,Google引入了新的主題風格—Holo,多數廠商都想統一界面設計UI,因此更加具有兼容性的Holo主題庫HoloEveryWhere便成爲很多開發者的選擇。在Android的官方Blog中也對HoloEveryWhere這個庫有所推薦,點此查看官方博客對HoloEveryWhere的介紹。HoloEveryWhere的Github。
Android-Datepicker: 兼容Android 4.0的datepicker至Android 2.2。 GitHub
二、擴展功能庫

SlidingMenu : SlidingMenu 能非常容易的讓開發者實現程序的抽屜效果,所謂的抽屜效果如下圖所示,通常被用作呼出菜單。而且SlidingMenu能很方便的與ActionBarSherlock融合,在官方GitHub上有關於如何融合的說明。 GitHub
滑動效果演示
AppMsg : 優雅的彈出類似Toast的消息提示,支持3種狀態Alert,Confirm以及Info。GitHub
Drag-Sort-ListView : 很多人都用過在一個ListView中通過拖拽對已有的數據進行排序操作。Drag-Sort-Listview就是實現這一功能的開源庫。GitHub
Android-Flip : 輕鬆實現類似FlipBoard的翻頁功能。 GitHub
Android-PullToRefresh : Android下拉刷新組件。 GitHub 此外,該作者還有另外一個實用度和關注量極高的項目–另一種Android ActionBar的實現:GitHub

picasso: 程序中經常面臨加載網絡圖片的情況,成熟做法:異步下載->緩存->顯示,Picasso一行代碼就可這三步輕鬆完成。GitHub GitHubPage ,GitHub上圖片異步加載緩存類庫很多,你也可嘗試使用Android-Universal-Image-Loader 或者 LazyList 後面將介紹到的afinal(國人項目)也具有此功能。
三、工具類庫:

首先,就我個人開發經驗,總結一下平常用到的一些最常用的功能:

下載,比如圖片,文件。
將下載的文件進行解壓。
請求服務器,比如說上傳登陸信息,更新某些數據,又或者上傳頭像文件。
從文件系統中選擇要操作的文件。
有時候也需要爬取某些網頁數據。
存儲一些配置信息
再有一個特殊需求就是關乎Android程序UI設計,圖標是個很麻煩的問題。每次都難以找到合適的Android 設計UI。
隨後,我將很有針對性的推薦一些功能庫,來簡化上面的問題。

afinal: afinal是一個很方便的工具庫。GitHub 作者博客(注:國人項目喲)
一行代碼就可以對數據庫進行增刪改查。
完全註解方式就可以進行UI綁定和事件綁定。無需findViewById和setClickListener等。
輕鬆實現Android上傳文件,POST數據,下載文件(支持斷點續傳,隨時停止下載任務 或者 開始任務)。
一行代碼加載網絡圖片。
android-async-http: Android下的異步HTTP庫。GitHub 文檔 PS:作者的GitHub值得關注。
發送異步http請求,並且可在回調函數中處理返回響應Response。
http請求在thread線程,不會阻塞UI線程。
請求使用線程池(ThreadPool)實現,優化了併發的資源使用。
支持Multipart 文件上傳。
如果Request請求失敗,會自動請求。
支持Json解碼。
支持存儲Cookies到Preference中。
支持gzip處理Request以及Response。
整個庫只有19KB。
async-http-client: Android下的異步 Http 和 WebSocket 庫。 GitHub
支持代理設置
支持分片兒處理請求返回內容
支持WebSocket
zt-zip: 壓縮和解壓庫。 GitHub
壓縮和解壓
單獨操作文件壓縮和解壓。
替換zip文件中的某個文件
aFileChooser:文件選擇器,用於選擇需要操作的文件 GitHub
jsoup: HTML解析,並且能很好理解DOM,CSS,以及JQuery。GitHub 官方 PS:這是java庫。做網頁爬蟲(Crawler,Robot)必備。
toml:這是個跨語言的配置信息存取方案。GitHub
Androiton-Action-Bar-Icons:一個針對Android 優化過的ICON圖標集。 GitHub Demo
四、圖標資源:

http://iconsparadise.com/ 質量一般,但也是一種選擇
http://iconbench.com/ 在線產生一些小圖標
http://www.androidicons.com/ 圖標質量很不錯,但是要付費($25刀),如果有想合買的可以聯繫我~
https://code.google.com/p/android-ui-utils/ 用來在線生成符合Android Design風格的設計圖標。 項目地址
五、一些手冊

Android圖形界面設計手冊,可以用來快速查看圖標的大小、ActionBar的Height等瑣碎的Android Design要求。GitHub
Android 官方UI設計手冊:下載
七、一些視頻

Android Studio 的新特性官方講解視頻,我在官方技術博客上下載下來,上傳到網盤,希望對大家有幫助。下載地址
八、高價值鏈接

Android官方博客 提供一些跟Android相關的即時諮詢。(需要梯子)
Android官方技術博客 主要提供一些新工具(如Android Studio),新技術(如每次更新帶來新特性)的演示和講解。(需要梯子)
AndroidViews Android View組件收集站點。


二、(from os china) http://www.oschina.net/project
1、Android的快速開發框架 afinal
http://www.oschina.net/p/afinal
社區 http://www.afinal.org/forum.php
code :https://github.com/yangfuhai/afinal/tree/master/src/net/tsz/afinal

Afinal 是一個android的 orm 和 ioc 框架。而且封裝了android中的httpClient,使其更加簡單易用。使用finalBitmap,無需考慮bitmap在android中加載的時候oom的問題和快速滑動的時候圖片加載位置錯位等問題。

Afinal的宗旨是簡潔,快速。約定大於配置的方式。儘量一行代碼完成所有事情。

2、OSCHINA Android 客戶端

http://www.oschina.net/p/oschina-android-app

code : https://github.com/oschina/android-app

3、安卓開發框架 AndroidAnnotations

http://www.oschina.net/p/androidannotations

homepage : http://androidannotations.org/
code : https://github.com/excilys/androidannotations
Android Annotations 是一個開源的框架,用於加速 Android 應用的開發,可以讓你把重點放在功能的實現上,簡化了代碼,提升了可維護性。
4、iOS/Android 矢量圖形框架 TouchVG
TouchVG 是一個通用的輕量級二維矢量圖形框架,可用於開發交互式矢量繪圖軟件,適用於 iPad/iPhone、Android 等多點觸摸設備,也適用於鼠標交互的桌面應用。

http://www.oschina.net/p/touchvg

5、http請求及緩存框架 GalHttprequest
http://www.oschina.net/p/galhttprequest

GalHttprequest 是一個android平臺上一個輕量級的http網絡請求及緩存框架。

當前GalHttpRequest支持以下功能:

同步請求Stirng、InputStream、Bitmap;
異步請求String、InputStream、Bitmap;支持回調接口;
支持異步下載文件,提供監聽進度回調接口;
支持緩存參數設置;
支持多線程及隊列請求;
自動適配移動、聯通、電信wap代理;
支持快捷post請求;

6、Android 快速開發框架 ThinkAndroid
ThinkAndroid簡介

ThinkAndroid是一個免費的開源的、簡易的、遵循Apache2開源協議發佈的Android開發框架,其開發宗旨是簡單、快速的進行Android應用程序的開發,包含Android mvc、簡易sqlite orm、ioc模塊、封裝Android httpclitent的http模塊,具有快速構建文件緩存功能,無需考慮緩存文件的格式,都可以非常輕鬆的實現緩存,它還基於文件緩存模塊實現了圖片緩存功能,在android中加載的圖片的時候,對oom的問題,和對加載圖片錯位的問題都輕易解決。他還包括了一個手機開發中經常應用的實用工具類,如日誌管理,配置文件管理,android下載器模塊,網絡切換檢測等等工具。

http://www.oschina.net/p/thinkandroid
https://github.com/white-cat/ThinkAndroid

7、android-vnc-viewer

http://www.oschina.net/p/android-vnc-viewer
http://code.google.com/p/android-vnc-viewer/

8、Android網絡共享軟件 Android Wifi Tether
http://www.oschina.net/p/android-wifi-tether
Android Wifi Tether 是 Android 用來實現網絡共享的軟件

http://code.google.com/p/android-wifi-tether/

9、Android-x86
http://www.oschina.net/p/android-x86
你可能會熟悉 LiveAndroid 項目,不過該項目自從推出 0.3 版本後 似乎就沒什麼動靜了。相比 LiveAndroid “To provide a LiveCD(and LiveUSB) for common X86 platforms” 的目標,Android-x86 項目目標更爲遠大:“Port Android open source project to x86 platform”。

目前 Android X86 項目實現的功能有:

Kernel 2.6.29 (包含 KMS)
聲音
攝像頭支持
觸摸屏
鼠標(滾輪及指針)
休眠及喚醒
包含 Busybox 的 Debug 模式
圖形 WiFi 配置
驅動固件熱拔插
外置 USB 鍵盤支持
模塊驅動的自動檢測
最近該項目推出了 Android 1.6 版本的 LiveCD(with Installer) 和 LiveUSB

http://www.android-x86.org/

10.Android滑動式菜單 SlidingMen
http://www.oschina.net/p/slidingmenu
https://github.com/jfeinstein10/SlidingMenu

11、Android瀑布流實例 android_waterfall
實現了類似於迷尚android和蘑菇街android的瀑布流佈局
https://github.com/dodola/android_waterfall
http://www.oschina.net/p/android_waterfall

12.WindowsAndroid
http://www.oschina.net/p/windowsandroid

http://www.socketeq.com/
WindowsAndroid 目前是基於 Android 4.03 開發,團隊計劃在不久後引入更多的Android版本供用戶使用。它能提供完整的 Android4.0體驗,其中還包含有原生的GApps(Google基礎服務包),你可以直接通過瀏覽器瀏覽網頁,收發郵件等……

開發者自稱在操作系統、虛擬化和圖形技術方面富有經驗,在該項目上已經工作了數年。WindowsAndroid不是模擬器,提供了完整的Android功能,可以運行所有的 Andorid 應用,包括 3D 遊戲。

13、android-viewflow
android-viewflow 是 Android 平臺上一個視圖切換的效果庫。

ViewFlow 相當於 Android UI 部件提供水平滾動的 ViewGroup,使用 Adapter 進行條目綁定。

http://www.oschina.net/p/android-viewflow
https://github.com/pakerfeldt/android-viewflow

14、滑動刷新的ListView Android PullToRefresh
該項目爲 Android 應用提供一個向下滑動即刷新列表的功能
Screenshot
http://www.oschina.net/p/pulltorefresh

https://github.com/johannilsson/android-pulltorefresh

15、Web開發語言 haXe
Haxe是一門新興的開源編程語言,開發者稱:“相比其他語言(Java的平臺是 JVM,C#的平臺是.Net,ActionScript的平臺是Flash Player等等),Haxe纔是真正的多平臺語言。不管是開發原生iOS、Android應用,還是網頁;不論是應用於服務器還是個人桌面,Haxe都 可以勝任。”
http://www.oschina.net/p/haxe

http://haxe.org/

16.Universal Androot

最近臺灣也有一個Android開發者研發了一款類似的一鍵root程序Universal Androot,同樣操作和Easy Root一樣簡單,而且用戶也可以再取得root權限後使用UnRoot功能來還原之前的系統狀態,這意味着如果你哪天玩膩了rooted的手機想回到過 去,或者官方Android系統升級推出時也想湊湊熱鬧可以使用UnRoot功能。
http://www.oschina.net/p/universal-androot

17、Android的OpenGL編程實例 Android-GL
http://www.oschina.net/p/android-gl
http://code.google.com/p/android-gl/downloads/list

18、HTML5視頻播放器 VideoJS
VideoJS 是一個 HTML5 的視頻播放器,兼容大量的平臺,對於不支持的瀏覽器則自動使用 Flash 播放器來播放。
http://www.oschina.net/p/videojs
http://www.videojs.com/

19、Android Coverflow
Android Coverflow 是 Android 的 cover flow 窗口部件的簡單實現。

http://code.google.com/p/android-coverflow/
http://www.oschina.net/p/android-coverflow

20、android-bootstrap
Android Bootstrap 包含一個完整實現:Fragments, Fragment Pager, Account Manager, android-maven-plugin, Dagger, ActionBarSherlock 4, ViewPagerIndicator, http-request, GSON, Robotium for integration testing, API Consumption with an API on Parse.com and much more.
http://www.oschina.net/p/android-bootstrap
http://www.androidbootstrap.com/
code:
https://github.com/donnfelker/android-bootstrap
21、ipcamera-for-android
一款將Android手機變成IP Camera的軟件,在同一個網路,你可以在任意的瀏覽器查看手機監控視頻。
http://www.oschina.net/p/ipcamera-for-android
http://code.google.com/p/ipcamera-for-android/

22、PhotoView
PhotoView 是一款擴展自Android ImageView ,支持通過單點/多點觸摸來進行圖片縮放的智能控件。

特性:

支持單點/多點觸摸,即時縮放圖片;
支持平滑滾動;
在滑動父控件下能夠運行良好;(例如:ViewPager)
http://www.oschina.net/p/android-photo-view
https://github.com/chrisbanes/PhotoView

23、開源的家庭自動化方案 openHAB
openHAB全稱爲open Home Automation Bus,即開放式家庭自動化總線,該項目旨在爲家庭自動化構建提供一個通用的集成平臺。

openHAB是一個純Java打造的開源項目,完全基於OSGi(Open Service Gateway Initiative),並使用Jetty作爲web服務器。Jetty和Equinox OSGi運行時一起構成了openHAB的核心基礎。

http://www.oschina.net/p/openhab

http://code.google.com/p/openhab/downloads/list

發佈了0 篇原創文章 · 獲贊 0 · 訪問量 1萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章