我们还是来看一款示例:(蘑菇街)
看起来很像我们的gridview吧,不过又不像,因为item大小不固定的,看起来是不是别有一番风味,确实如此.就如我们的方角图形,斯通见惯后也就出现了圆角.下面我简单介绍下实现方法.
第一种:
我们在配置文件中定义好列数.如上图也就是3列.我们需要定义三个LinearLayout,然后把获取到的图片add里面就ok了.
main.xml
- <?xmlversion="1.0"encoding="utf-8"?>
- <LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:background="@android:color/background_light"
- android:orientation="vertical">
- <include
- android:id="@+id/progressbar"
- layout="@layout/loading"/>
- <com.jj.waterfall.LazyScrollView
- android:id="@+id/lazyscrollview"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:layout_weight="1"
- android:scrollbars="@null">
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:background="@android:color/background_light"
- android:orientation="horizontal"
- android:padding="2dp">
- <LinearLayout
- android:id="@+id/layout01"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:layout_weight="1"
- android:orientation="vertical">
- </LinearLayout>
- <LinearLayout
- android:id="@+id/layout02"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:layout_weight="1"
- android:orientation="vertical">
- </LinearLayout>
- <LinearLayout
- android:id="@+id/layout03"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:layout_weight="1"
- android:orientation="vertical">
- </LinearLayout>
- </LinearLayout>
- </com.jj.waterfall.LazyScrollView>
- <TextView
- android:id="@+id/loadtext"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:background="@drawable/loading_bg"
- android:gravity="center"
- android:padding="10dp"
- android:text="Loading..."
- android:textColor="@android:color/background_dark"/>
- </LinearLayout>
在这里因为图片很多就把图片放在assets文件中,如果想从网上拉取数据,自己写额外部分.
- @Override
- publicvoidonCreate(BundlesavedInstanceState){
- super.onCreate(savedInstanceState);
- InitView();
- assetManager=this.getAssets();
- //获取显示图片宽度
- Image_width=(getWindowManager().getDefaultDisplay().getWidth()-4)/3;
- try{
- image_filenames=Arrays.asList(assetManager.list("images"));//获取图片名称
- }catch(IOExceptione){
- e.printStackTrace();
- }
- addImage(current_page,count);
- }
- /***
- *加载更多
- *
- *@paramcurrent_page
- *当前页数
- *@paramcount
- *每页显示个数
- */
- privatevoidaddImage(intcurrent_page,intcount){
- for(intx=current_page*count;x<(current_page+1)*count
- &&x<image_filenames.size();x++){
- addBitMapToImage(image_filenames.get(x),y,x);
- y++;
- if(y>=3)
- y=0;
- }
- }
- /***
- *添加imageview到layout
- *
- *@paramimagePath图片name
- *@paramj列
- *@parami行
- */
- publicvoidaddBitMapToImage(StringimagePath,intj,inti){
- ImageViewimageView=getImageview();
- asyncTask=newImageDownLoadAsyncTask(this,imagePath,imageView,
- Image_width);
- asyncTask.setProgressbar(progressbar);
- asyncTask.setLoadtext(loadtext);
- asyncTask.execute();
- imageView.setTag(i);
- if(j==0){
- layout01.addView(imageView);
- }elseif(j==1){
- layout02.addView(imageView);
- }elseif(j==2){
- layout03.addView(imageView);
- }
- imageView.setOnClickListener(newOnClickListener(){
- @Override
- publicvoidonClick(Viewv){
- Toast.makeText(MainActivity.this,
- "您点击了"+v.getTag()+"个Item",Toast.LENGTH_SHORT)
- .show();
- }
- });
- }
注释已经很明确,相信大家都看的明白,我就不过多解释了.
因为瀑布流不是一个规则的试图,所以我们不可能用listview那种“底部加一个按钮试图,点击加载更多,这样看起来很难看”。因此我们最好滑动到低端自动加载.
我们这里用到的自定义ScrollView,因为我们要实现下滑分页,这里要判断是否要进行分页等操作.
LazyScrollView.java (这个法很实用哦.)
- /***
- *自定义ScrollView
- *
- *@authorzhangjia
- *
- */
- publicclassLazyScrollViewextendsScrollView{
- privatestaticfinalStringtag="LazyScrollView";
- privateHandlerhandler;
- privateViewview;
- publicLazyScrollView(Contextcontext){
- super(context);
- }
- publicLazyScrollView(Contextcontext,AttributeSetattrs){
- super(context,attrs);
- }
- publicLazyScrollView(Contextcontext,AttributeSetattrs,intdefStyle){
- super(context,attrs,defStyle);
- }
- //这个获得总的高度
- publicintcomputeVerticalScrollRange(){
- returnsuper.computeHorizontalScrollRange();
- }
- publicintcomputeVerticalScrollOffset(){
- returnsuper.computeVerticalScrollOffset();
- }
- /***
- *初始化
- */
- privatevoidinit(){
- this.setOnTouchListener(onTouchListener);
- handler=newHandler(){
- @Override
- publicvoidhandleMessage(Messagemsg){
- //processincomingmessageshere
- super.handleMessage(msg);
- switch(msg.what){
- case1:
- if(view.getMeasuredHeight()<=getScrollY()+getHeight()){
- if(onScrollListener!=null){
- onScrollListener.onBottom();
- }
- }elseif(getScrollY()==0){
- if(onScrollListener!=null){
- onScrollListener.onTop();
- }
- }else{
- if(onScrollListener!=null){
- onScrollListener.onScroll();
- }
- }
- break;
- default:
- break;
- }
- }
- };
- }
- OnTouchListeneronTouchListener=newOnTouchListener(){
- @Override
- publicbooleanonTouch(Viewv,MotionEventevent){
- //TODOAuto-generatedmethodstub
- switch(event.getAction()){
- caseMotionEvent.ACTION_DOWN:
- break;
- caseMotionEvent.ACTION_UP:
- if(view!=null&&onScrollListener!=null){
- handler.sendMessageDelayed(handler.obtainMessage(1),200);
- }
- break;
- default:
- break;
- }
- returnfalse;
- }
- };
- /**
- *获得参考的View,主要是为了获得它的MeasuredHeight,然后和滚动条的ScrollY+getHeight作比较。
- */
- publicvoidgetView(){
- this.view=getChildAt(0);
- if(view!=null){
- init();
- }
- }
- /**
- *定义接口
- *
- *@authoradmin
- *
- */
- publicinterfaceOnScrollListener{
- voidonBottom();
- voidonTop();
- voidonScroll();
- }
- privateOnScrollListeneronScrollListener;
- publicvoidsetOnScrollListener(OnScrollListeneronScrollListener){
- this.onScrollListener=onScrollListener;
- }
我们还需要一个类,异步加载实现,我想有开发经验的朋友一定用过好多次了,这里就不展示代码了,想看的朋友,可以点击下载(如果认为还不错的话,请您一定要表示一下哦.)
对了,忘记一点,我们还需要对MainActivity 中的lazyScrollView实现OnScrollListener接口,对滑动到底部进行监听.
效果图:
/**************************************************************************/
下面我介绍另外一种做法:(相对上面更灵活)
我们动态添加列.
配置文件就不贴了,和上面那例子一样,只不过里面值包含一个LinearLayout布局.
在这里我们动态添加列布局.
- /***
- *initview
- */
- publicvoidinitView(){
- setContentView(R.layout.main);
- lazyScrollView=(LazyScrollView)findViewById(R.id.waterfall_scroll);
- lazyScrollView.getView();
- lazyScrollView.setOnScrollListener(this);
- waterfall_container=(LinearLayout)findViewById(R.id.waterfall_container);
- progressbar=(LinearLayout)findViewById(R.id.progressbar);
- loadtext=(TextView)findViewById(R.id.loadtext);
- item_width=getWindowManager().getDefaultDisplay().getWidth()/column;
- linearLayouts=newArrayList<LinearLayout>();
- //添加列到waterfall_container
- for(inti=0;i<column;i++){
- LinearLayoutlayout=newLinearLayout(this);
- LinearLayout.LayoutParamsitemParam=newLinearLayout.LayoutParams(
- item_width,LayoutParams.WRAP_CONTENT);
- layout.setOrientation(LinearLayout.VERTICAL);
- layout.setLayoutParams(itemParam);
- linearLayouts.add(layout);
- waterfall_container.addView(layout);
- }
- }
- /***
- *获取imageview
- *
- *@paramimageName
- *@return
- */
- publicImageViewgetImageview(StringimageName){
- BitmapFactory.Optionsoptions=getBitmapBounds(imageName);
- //创建显示图片的对象
- ImageViewimageView=newImageView(this);
- LayoutParamslayoutParams=newLayoutParams(LayoutParams.WRAP_CONTENT,
- LayoutParams.FILL_PARENT);
- imageView.setLayoutParams(layoutParams);
- //
- imageView.setMinimumHeight(options.outHeight);
- imageView.setMinimumWidth(options.outWidth);
- imageView.setPadding(2,0,2,2);
- imageView.setBackgroundResource(R.drawable.image_border);
- if(options!=null)
- options=null;
- returnimageView;
- }
- /***
- *
- *获取相应图片的BitmapFactory.Options
- */
- publicBitmapFactory.OptionsgetBitmapBounds(StringimageName){
- inth,w;
- BitmapFactory.Optionsoptions=newBitmapFactory.Options();
- options.inJustDecodeBounds=true;//只返回bitmap的大小,可以减少内存使用,防止OOM.
- InputStreamis=null;
- try{
- is=assetManager.open(file+"/"+imageName);
- }catch(IOExceptione){
- e.printStackTrace();
- }
- BitmapFactory.decodeStream(is,null,options);
- returnoptions;
- }
在这里我稍微修改了下,为要显示的iamgeview添加一个边框,这样看起来效果不错,我们动态滑动的同时, 然后图片陆续的填充边框.蘑菇街就是这种效果哦.
效果图:
显示成4列,因此图片有点小,仔细看的话,你应该可以看到有好多边框,然后图片陆续的填充边框.这种效果感觉对上面那个用户体验更友好些.
最后简单总结下:针对瀑布流最好使用第二种方法,这种可扩展性比较大,哪天老大说四列太丑了,改成三列,那么我们只需要把column改成3就ok了,简单吧。
注意:由于图片量太多,占用空间太大,因此我将图片上传到网上,获取源码的同学下载该文件放到项目的assets文件夹下,然后运行就ok了.
如果有不足之处,请留言指出,
想要源码请留邮箱.Thanks for you 。
由于比较繁忙,我将源码上传网上,如有需要,自行下载,如有问题,请留言.(记得下载图片导入项目里面)
哈哈,如果对您又帮助的话,记得赞一个哦.
原帖地址:http://blog.csdn.net/jj120522/article/details/8022545
另一个开源框架(EOE):http://www.eoeandroid.com/thread-157448-1-1.html
相关推荐
在这个"Android瀑布流仿蘑菇街"项目中,我们将深入探讨如何在Android平台上实现这种效果。 首先,瀑布流的核心是自适应布局,它需要根据屏幕尺寸和设备方向动态调整每个单元格(item)的大小。在Android中,我们...
【安卓仿蘑菇街瀑布流demo】是一个用于学习和实践的Android开发项目,它主要展示了如何在Android应用中实现类似蘑菇街商品展示的瀑布流布局。瀑布流布局是一种常见的UI设计,通常用于图片或者商品的展示,用户在滚动...
Android瀑布流实现,蘑菇街应用里的排列
Android瀑布流实现,类似于蘑菇街和迷尚 应用里的排列.zip Android瀑布流实现,类似于蘑菇街和迷尚 应用里的排列.zip Android瀑布流实现,类似于蘑菇街和迷尚 应用里的排列.zip Android瀑布流实现,类似于蘑菇街和...
(最近发现用 网页实现瀑布流 再用WebView加载才能完美实现效果) 原理使用RelativeLayout任意定位位置 核心方法 private void addViewByMargins(RelativeLayout layout, View view, int x, int y, int width, int...
综上所述,Android瀑布流的实现涉及到了多个技术层面,包括UI组件、布局管理、数据加载策略、图片处理等多个方面。通过合理的组合和优化,可以创建出类似蘑菇街和迷尚应用那样流畅、美观的瀑布流界面。
Android平台上的瀑布流布局实现,可以帮助开发者创建类似蘑菇街、迷尚等应用的视觉效果,让用户在浏览商品或内容时获得更佳的用户体验。这种布局的主要特点是每一列的高度不同,新元素会自动填充到合适的空白位置,...
瀑布流布局,又称Masonry布局,是一种常见的网页和移动应用中的布局方式,尤其在电商、社交等应用中广泛使用,如蘑菇街、迷尚等。它的特点在于将内容以不规则的方式填充到屏幕中,形成一种自适应屏幕大小,且元素...
下面我们将深入探讨如何在Android中实现瀑布流显示效果。 1. **基本概念** - **瀑布流布局(Waterfall Layout)**:一种不规则的网格布局,每个元素的宽度固定,但高度可以根据内容自适应,形成类似瀑布下落的效果...
通过以上步骤,你可以实现一个类似于蘑菇街或迷尚应用的Android瀑布流布局。记住,实践中可能会遇到各种问题,如图片加载延迟、布局错乱等,需要根据实际情况进行调试和优化。希望这个源码项目能帮助你深入理解...
一个类似蘑菇街的Android瀑布流展示代码,值得参考。
本资源提供了一个功能完善的Android瀑布流实现方案,旨在帮助您轻松打造出类似蘑菇街和迷尚应用中的精美商品排列效果。瀑布流布局以其独特的视觉吸引力和高效的资源利用,在电商、社交等多个领域得到了广泛应用。 ...
通过以上知识点的综合运用,可以在Android平台上实现一个功能完备且流畅的瀑布流布局,模拟蘑菇街和迷尚等应用中的商品展示效果。在实际开发中,还需要考虑性能优化、用户体验等方面的细节,以打造高质量的移动应用...
《瀑布流》SDK2.0是一款专为开发者设计的,用于实现类似蘑菇街和美丽说商品展示效果的软件开发工具包。它通过模仿这两款知名电商应用的界面布局,为移动应用提供了一种动态、美观且易于滚动的商品展示方式,即瀑布流...
实现Android瀑布流布局主要有以下几种方法: 1. **自定义ViewGroup**: 开发者可以通过继承`ViewGroup`,重写`onMeasure()`和`onLayout()`方法来实现自定义的瀑布流布局。在这个过程中,需要计算每个子View的宽度...