UltimateAndroid 0.7.0 發(fā)布,分拆 UI 模塊
UltimateAndroid 快速開(kāi)發(fā)框架今天發(fā)布了0.7.0版本,這個(gè)版本主要分拆了 UI 模塊,將原有 UI project 分拆成4個(gè)子項(xiàng)目,可以分別單獨(dú)使用。這樣如果只需要部分效果的可以只采用子項(xiàng)目,當(dāng)然也可以直接使用原有的 UltimateAndroidUi 項(xiàng)目。
導(dǎo)入框架:
- Core framework:
- ```groovy
- repositories {
- jcenter()
- }
- dependencies {
- ...
- compile 'com.marshalchen.ultimateandroid:ultimateandroid:0.7.0'
- }
- ```
- Ui framework:
- ```groovy
- repositories {
- jcenter()
- }
- dependencies {
- ...
- compile 'com.marshalchen.ultimateandroid:ultimateandroidui:0.7.0'
- }
- ```
- Separate Ui framework:
- ```groovy
- repositories {
- jcenter()
- }
- dependencies {
- ...
- compile 'com.marshalchen.ultimateandroid:ultimateandroiduiwidget:0.7.0'
- }
- ```
- ```groovy
- repositories {
- jcenter()
- }
- dependencies {
- ...
- compile 'com.marshalchen.ultimateandroid:ultimateandroiduicomponent:0.7.0'
- }
- ```
- ```groovy
- repositories {
- jcenter()
- }
- dependencies {
- ...
- compile 'com.marshalchen.ultimateandroid:ultimateandroiduianimation:0.7.0'
- }
- ```
- ```groovy
- repositories {
- jcenter()
- }
- dependencies {
- ...
- compile 'com.marshalchen.ultimateandroid:ultimateandroiduilollipop:0.7.0'
- }
- ```
github地址:https://github.com/cymcsg/UltimateAndroid (更新最及時(shí),同時(shí)接受issue和pull request)
UltimateAndroid 內(nèi)帶的子模塊 UltimateRecyclerview 也發(fā)布了0.3.1版本,UltimateRecyclerview 是一種功能強(qiáng)大的RecyclerView(advanced and flexible version of ListView),包括了下拉刷新,加載更多,多種動(dòng)畫(huà),空數(shù)據(jù)提示,拖動(dòng)排序,視差處理,工具欄漸變,滑動(dòng)刪除,自定義floating button,多種刷新效果,scrollbar等等元素,而且使用起來(lái)跟RecyclerView一樣的方便。目前該項(xiàng)目在oschina上也建立了鏡 像。
github地址:https://github.com/cymcsg/UltimateRecyclerView(issue和pull request請(qǐng)發(fā)送到這里)
UltimateAndroid 是一套集成了許多現(xiàn)有優(yōu)秀的Android開(kāi)源類(lèi)庫(kù)并將之組合成一個(gè)整體的Android快速開(kāi)發(fā)框架。
框 架目前主要包含的功能有View Injection,ORM,異步網(wǎng)絡(luò)請(qǐng)求和圖片加載,自動(dòng)化腳本測(cè)試,磁盤(pán)LRU等功能.同時(shí)提供了類(lèi)似于TripleDes、Webview快速設(shè) 置、Md5處理、String處理,Https處理等常用工具類(lèi),還有多種UI控件效果。并且這些功能正在逐步增加中。
部分老的功能還沒(méi)有Demo,但我會(huì)不斷的完善。目前每加入一個(gè)新功能都會(huì)增加Demo.Demo的Apk文件可以直接下載使用。
框架的Demo目前主要只包含了UI Module部分和View Injection,看上去有些無(wú)聊,不過(guò)你仍可以查看這些有趣的UI效果。