Skip to content

Commit 91913f8

Browse files
committed
Merge pull request #74 from liaohuqiu/f-add-etao-image
Add GridViewWithHeaderAndFooter / modify Cube-Image-Loader
2 parents eccdc2a + 9b04ea2 commit 91913f8

File tree

3 files changed

+33
-3
lines changed

3 files changed

+33
-3
lines changed

English Version/README.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,12 @@ Demo视频:http://youtu.be/FYTSRfthSuQ
306306
1. Android-DraggableGridViewPager
307307
Zaker style grid view pager, support dragging & rearrange, using as zaker's main screen.
308308
Project Address: https://github.com/zzhouj/Android-DraggableGridViewPager
309-
Demo Apk: https://github.com/Trinea/trinea-download/blob/master/draggable-grid-viewpager-demo.apk?raw=true
309+
Demo Apk: https://github.com/Trinea/trinea-download/blob/master/draggable-grid-viewpager-demo.apk?raw=true
310+
311+
1. GridView with Header and Footer
312+
Same with `ListView`. It allows you call `addHeaderView()`, `addFooterView` to add views to GridView.
313+
Project Address:https://github.com/liaohuqiu/android-GridViewWithHeaderAndFooter
314+
Renderings:![Screen Shot](https://raw.githubusercontent.com/liaohuqiu/android-GridViewWithHeaderAndFooter/master/screen-shot.png)
310315
<a href="https://github.com/Trinea/android-open-project/edit/master/English%20Version/README.md#include" title="Back to directory" style="width:100%"><img src="http://farm4.staticflickr.com/3737/12167413134_edcff68e22_o.png" align="right"/></a>
311316

312317
#### 6. ImageView
@@ -692,6 +697,13 @@ Image Cache, support multi caching algorithms
692697
Project Address: https://github.com/Trinea/AndroidCommon
693698
Demo Apk: https://play.google.com/store/apps/details?id=cn.trinea.android.demo
694699
Document: http://www.trinea.cn/android/android-imagecache/
700+
701+
1. Cube ImageLoader
702+
Easy to use, high performance, used in some of the Apps in Alibaba Group.
703+
Project Address:https://github.com/etao-open-source/cube-sdk
704+
Demo Apk:https://github.com/liaohuqiu/cube-sdk/raw/master/cube-sdk-sample.apk
705+
Document:http://cube-sdk.liaohuqiu.net/
706+
Renderings: ![Screen Shot](https://raw.githubusercontent.com/etao-open-source/cube-sdk/dev/screen-shot.png)
695707
<a href="https://github.com/Trinea/android-open-project/edit/master/English%20Version/README.md#include" title="Back to directory" style="width:100%"><img src="http://farm4.staticflickr.com/3737/12167413134_edcff68e22_o.png" align="right"/></a>
696708

697709
#### 3. Network

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -444,6 +444,11 @@ Demo地址:https://github.com/Trinea/trinea-download/blob/master/draggable-gri
444444
项目地址:https://github.com/felipecsl/AsymmetricGridView
445445
Demo地址:https://play.google.com/store/apps/details?id=com.felipecsl.asymmetricgridview.app
446446
效果图:![Renderings](https://raw.githubusercontent.com/felipecsl/AsymmetricGridView/master/screenshots/ss_5_cols.png)
447+
448+
1. GridView with Header and Footer
449+
`ListView`一样带头部和底部的`GridView`,用法和`ListView`一样
450+
项目地址:https://github.com/liaohuqiu/android-GridViewWithHeaderAndFooter
451+
效果图:![Screen Shot](https://raw.githubusercontent.com/liaohuqiu/android-GridViewWithHeaderAndFooter/master/screen-shot.png)
447452
<a href="https://github.com/Trinea/android-open-project#%E7%9B%AE%E5%89%8D%E5%8C%85%E6%8B%AC" title="返回目录" style="width:100%"><img src="http://farm4.staticflickr.com/3737/12167413134_edcff68e22_o.png" align="right"/></a>
448453

449454
#### 六、ImageView
@@ -1123,10 +1128,11 @@ Demo地址:https://play.google.com/store/apps/details?id=cn.trinea.android.dem
11231128
(6)可根据系统配置初始化缓存等
11241129

11251130
1. Cube ImageLoader
1126-
阿里巴巴一淘使用的图片加载,综合了Android-Universal-Image-Loader 和 square 等组件有点,简单易用,良好的中文文档支持
1131+
阿里巴巴一淘使用的图片加载,综合了Android-Universal-Image-Loader 和 square 等组件优点,简单易用,良好的中文文档支持
11271132
项目地址:https://github.com/etao-open-source/cube-sdk
11281133
Demo地址:https://github.com/liaohuqiu/cube-sdk/raw/master/cube-sdk-sample.apk
11291134
文档介绍:http://cube-sdk.liaohuqiu.net/
1135+
效果图:![Screen Shot](https://raw.githubusercontent.com/etao-open-source/cube-sdk/dev/screen-shot.png)
11301136
<a href="https://github.com/Trinea/android-open-project#%E7%9B%AE%E5%89%8D%E5%8C%85%E6%8B%AC" title="返回目录" style="width:100%"><img src="http://farm4.staticflickr.com/3737/12167413134_edcff68e22_o.png" align="right"/></a>
11311137

11321138
#### 三、网络相关

繁體中文版/README.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,12 @@ Demo視頻:http://youtu.be/FYTSRfthSuQ
320320
1. Android-DraggableGridViewPager
321321
Item可拖動交換位置的GridView,實際是自己繼承ViewGroup實現,類似桌面的多屏效果,可屏幕自動左右滾動進行Item移動交換,單屏效果見上面DraggableGridView
322322
項目地址:https://github.com/zzhouj/Android-DraggableGridViewPager
323-
Demo地址:https://github.com/Trinea/trinea-download/blob/master/draggable-grid-viewpager-demo.apk?raw=true
323+
Demo地址:https://github.com/Trinea/trinea-download/blob/master/draggable-grid-viewpager-demo.apk?raw=true
324+
325+
1. GridView with Header and Footer
326+
`ListView`一樣帶有頭部和底部,用法也一樣簡單
327+
項目地址:https://github.com/liaohuqiu/android-GridViewWithHeaderAndFooter
328+
效果图:![Screen Shot](https://raw.githubusercontent.com/liaohuqiu/android-GridViewWithHeaderAndFooter/master/screen-shot.png)
324329
<a href="https://github.com/Trinea/android-open-project#%E7%9B%AE%E5%89%8D%E5%8C%85%E6%8B%AC" title="返回目錄" style="width:100%"><img src="http://farm4.staticflickr.com/3737/12167413134_edcff68e22_o.png" align="right"/></a>
325330

326331
#### 六、ImageView
@@ -785,6 +790,13 @@ Demo地址:https://play.google.com/store/apps/details?id=cn.trinea.android.dem
785790
(4)可方便的保存及初始化恢複數據
786791
(5)支持不同類型網絡處理
787792
(6)可根據系統配置初始化緩存等
793+
794+
1. Cube ImageLoader
795+
阿里巴巴一些App使用的圖片加載組件,綜合了Android-Universal-Image-Loader 和 square 等組件優點,簡單易用。
796+
項目地址:https://github.com/etao-open-source/cube-sdk
797+
Demo地址:https://github.com/liaohuqiu/cube-sdk/raw/master/cube-sdk-sample.apk
798+
文檔介绍:http://cube-sdk.liaohuqiu.net/
799+
效果图:![Screen Shot](https://raw.githubusercontent.com/etao-open-source/cube-sdk/dev/screen-shot.png)
788800
<a href="https://github.com/Trinea/android-open-project#%E7%9B%AE%E5%89%8D%E5%8C%85%E6%8B%AC" title="返回目錄" style="width:100%"><img src="http://farm4.staticflickr.com/3737/12167413134_edcff68e22_o.png" align="right"/></a>
789801

790802
#### 三、網絡相關

0 commit comments

Comments
 (0)