`

Android ListView项收缩效果

 
阅读更多
项目中看到IOS上LIstView在显示隐藏一部分时有一个收缩的特效,但Android自带的没有。就想着能否自定义实现,下面是从项目中提取出来的Demo。
先上效果图:



点击每一行右边的图标显示隐藏;

一、自定义了ExpandableLayout是继承自LinearLayout:
package com.jerome.expand;

import android.content.Context;
import android.util.AttributeSet;
import android.view.View;
import android.widget.LinearLayout;

public class ExpandableLayout extends LinearLayout {
	private String TAG = ExpandableLayout.class.getSimpleName();

	private int layoutHeight = -1;
	private int OPEN_LAYOUT_TIMES = 20;
	private int SLEEP_TIME = 15;
	private float layoutStep = 8;

	private OnExpandFinishListener onExpand = null;
	private OnCollapseFinishListener onCollapse = null;

	public interface OnExpandFinishListener {
		public void onExpandFinish();
	}

	public interface OnCollapseFinishListener {
		public void onCollapseFinish();
	}

	public void setOnExpandFinishListener(OnExpandFinishListener oeListener) {
		onExpand = oeListener;
	}

	public void setOnCollapseFinishListener(OnCollapseFinishListener ocListener) {
		onCollapse = ocListener;
	}

	public void setLayoutHeight(int height) {
		layoutHeight = height;
		layoutStep = 1.0f * layoutHeight / OPEN_LAYOUT_TIMES;
	}

	public ExpandableLayout(Context context) {
		super(context);
	}

	public ExpandableLayout(Context context, AttributeSet attrs) {
		super(context, attrs);
	}

	public void collapse() {
		new Thread() {
			public void run() {
				for (int i = 0; i < OPEN_LAYOUT_TIMES + 1; i++) {
					final int ii = i;
					post(new Thread() {
						public void run() {
							LayoutParams params = new LayoutParams(LayoutParams.MATCH_PARENT, (int) ((OPEN_LAYOUT_TIMES -ii) * layoutStep));
							setLayoutParams(params);
							if (ii == OPEN_LAYOUT_TIMES) {
								setVisibility(View.GONE);
								if(null!=onCollapse){
									onCollapse.onCollapseFinish();
								}
							}
						}
					});

					try {
						Thread.sleep(SLEEP_TIME);
					} catch (InterruptedException e) {
						e.printStackTrace();
					}
				}
			}
		}.start();
	}

	public void expand() {
		if (layoutHeight <= 0) {
			return;
		}
		
		android.widget.LinearLayout.LayoutParams params = new android.widget.LinearLayout.LayoutParams(
				LayoutParams.MATCH_PARENT, 0);
		setLayoutParams(params);
		setVisibility(View.VISIBLE);
		
		new Thread() {
			public void run() {
				for (int i = 0; i < OPEN_LAYOUT_TIMES + 1; i++) {
					final int ii = i;
					post(new Thread() {
						public void run() {
							LayoutParams params = new LayoutParams(LayoutParams.MATCH_PARENT,(int) (ii * layoutStep));
							setLayoutParams(params);
							
							if (ii == OPEN_LAYOUT_TIMES) {
								if(null!=onExpand){
									onExpand.onExpandFinish();
								}
							}
						}
					});
					
					try {
						Thread.sleep(SLEEP_TIME);
					} catch (InterruptedException e) {
						e.printStackTrace();
					}
				}
			}
		}.start();
	}
}




二、在Listview的Item配置文件中使用:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >

        <TextView
            android:id="@+id/list_item_text"
            android:layout_width="0dip"
            android:layout_height="wrap_content"
            android:layout_marginBottom="10dp"
            android:layout_marginLeft="10dp"
            android:layout_marginTop="10dp"
            android:layout_weight="1"
            android:paddingBottom="5dip"
            android:textColor="#FFFFFFFF"
            android:textSize="18dp" />

        <ImageView
            android:id="@+id/list_item_more"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center_vertical"
            android:paddingLeft="10dip"
            android:src="@drawable/indicate_more_oper_icon_pressed" />
    </LinearLayout>

    <com.jerome.expand.ExpandableLayout
        android:id="@+id/list_item_more_layout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="#ff303537"
        android:orientation="horizontal"
        android:paddingBottom="15dip"
        android:paddingTop="15dip"
        android:visibility="gone" >

        <LinearLayout
            android:layout_width="0dip"
            android:layout_height="wrap_content"
            android:layout_gravity="center_vertical"
            android:layout_weight="1"
            android:gravity="center"
            android:orientation="horizontal" >

            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:src="@drawable/icon_music_not_collect" />

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="10dip"
                android:text="收藏"
                android:textColor="#FFFFFFFF"
                android:textSize="14sp" />
        </LinearLayout>

        <LinearLayout
            android:layout_width="0dip"
            android:layout_height="wrap_content"
            android:layout_gravity="center_vertical"
            android:layout_weight="1"
            android:gravity="center"
            android:orientation="horizontal" >

            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:src="@drawable/icon_music_delete" />

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="10dip"
                android:gravity="center_horizontal"
                android:text="删除"
                android:textColor="#FFFFFFFF"
                android:textSize="14sp" />
        </LinearLayout>
    </com.jerome.expand.ExpandableLayout>

</LinearLayout>


三、在代码中使用:

	class MyAdapter extends BaseAdapter {

		List<String> data = new ArrayList<String>();

		MyAdapter() {
			initData();
		}

		private void initData() {
			for (int i = 0; i < 30; i++) {
				data.add("第" + i + "行");
			}
		}

		@Override
		public int getCount() {
			return data.size();
		}

		@Override
		public Object getItem(int position) {
			return data.get(position);
		}

		@Override
		public long getItemId(int position) {
			return 0;
		}

		@Override
		public View getView(final int position, View convertView, ViewGroup parent) {
			final HolderView holder;
			if (convertView == null) {
				holder = new HolderView();
				convertView = LayoutInflater.from(MainActivity.this).inflate(R.layout.list_item, null);
				holder.text = (TextView)convertView.findViewById(R.id.list_item_text);
				holder.more = (ImageView)convertView.findViewById(R.id.list_item_more);
				holder.moreLayout = (ExpandableLayout)convertView.findViewById(R.id.list_item_more_layout);
				convertView.setTag(holder);
			} else {
				holder = (HolderView)convertView.getTag();
			}
			holder.more.setOnClickListener(new OnClickListener(){

				@Override
				public void onClick(View v) {
					int visable = holder.moreLayout.getVisibility();
					if (visable == View.VISIBLE) {
						holder.moreLayout.setLayoutHeight(150);
						holder.moreLayout.setOnCollapseFinishListener(new OnCollapseFinishListener(){

							@Override
							public void onCollapseFinish() {
								selectedPosition = -1;
							}
							
						});
						holder.moreLayout.collapse();
					} else {
						holder.moreLayout.setLayoutHeight(150);
						holder.moreLayout.expand();
						selectedPosition = position;
notifyDataSetChanged();
					}
				}
				
			});

			if (selectedPosition == position) {
				holder.moreLayout.setVisibility(View.VISIBLE);
			} else {
				holder.moreLayout.setVisibility(View.GONE);
			}
			holder.text.setText(data.get(position));
			return convertView;
		}

	}


demo见附件!!!
  • 大小: 41.1 KB
1
0
分享到:
评论

相关推荐

    android可展开收缩的ListView

    "android可展开收缩的ListView"是对此功能的一种扩展实现,它为每个列表项提供了自定义的展开和收缩动画,为用户界面增添了动态性和趣味性。 这种自定义ListView通常通过继承ListView或者使用第三方库来实现,例如`...

    用listview实现暂开的收缩

    本篇将详细讲解如何利用ListView实现一种特殊的交互效果——“暂开的收缩”(也可能是“展开与收缩”的交互),以及相关的技术要点。 首先,我们要理解“暂开的收缩”这一概念。这通常指的是当用户点击ListView中的...

    android仿苹果ListView的实现

    3. **动画效果**: 利用`Animation`类和`ObjectAnimator`可以为ListView项添加各种动画效果,如滑动、缩放等。在`getView()`中根据状态应用相应的动画。 4. **下拉刷新**: 下拉刷新功能是现代ListView常见的特性。...

    Android封装popwindow类(下拉菜单弹出和收缩效果)

    本教程将详细讲解如何封装一个`PopWindow`,实现下拉菜单的弹出和收缩效果。 首先,我们需要了解`PopWindow`的基本概念。`PopupWindow`是Android提供的一个轻量级窗口,它可以在Activity的任何位置显示,且可以...

    androidListview嵌套Gridview

    标题“androidListview嵌套Gridview”指出我们要讨论的是如何在Android的ListView中嵌入GridView。这个技术通常用于创建类似目录结构、商品分类或者媒体库等应用,其中每个大类(ListView的每一项)下都有多个小分类...

    Android 顶部可以伸缩+头部固定+listview下拉刷新、上拉请求更多

    在Android应用开发中,"顶部可以伸缩+头部固定+listview下拉刷新、上拉请求更多"是一种常见的用户界面设计模式,它极大地提升了用户体验,尤其是在处理大量数据时。这种设计通常包括三个主要部分:可伸缩的顶部区域...

    Android 具有伸缩效果的ListView源码.rar

    首先,伸缩效果通常指的是ListView中的项在被点击时呈现出一种放大或收缩的动画效果,这可以通过自定义适配器和视图来实现。在Android中,我们可以创建一个继承自BaseAdapter的自定义适配器,并重写其中的方法,如`...

    Android左侧可收缩栏.rar

    在Android应用开发中,"左侧可收缩栏"通常被称为侧滑菜单或者抽屉式导航(Drawer Layout)。这种设计模式在许多应用中广泛使用,比如Google Maps、Facebook等,它允许用户从屏幕左侧滑动来展示一个包含多个选项的...

    Android程序研发源码Android 具有伸缩效果的ListView源码.rar

    本资料"Android程序研发源码Android 具有伸缩效果的ListView源码"就提供了这样一个实现。 在这个源码中,我们可以看到一个名为FlexList的组件,它是对原生ListView的扩展。这个FlexList实现了列表项在被点击时的...

    listview item

    在Android开发中,ListView是常用的一种控件,用于展示大量数据列表。`ListView item`通常指的是ListView中的每一行单元格,也就是我们常说的列表项。本篇将详细讲解如何实现ListView item的收起展开功能,并提供...

    基于Android ListView的点击显示更多文字功能设计源码

    该项目为Android平台上的ListView点击事件响应式设计源码,旨在实现点击列表项时展示更多文字的功能,灵感源自360手机助手。项目包含22个文件,其中XML配置文件10个、PNG图片文件5个、Java源文件3个、Git忽略文件1个...

    Android收缩控件

    4. **数据管理**:如果收缩的控件包含大量数据(如列表),可以考虑使用`RecyclerView`或`ListView`,并结合`Adapter`进行动态加载和隐藏/显示。 5. **第三方库**:Android社区提供了许多第三方库,简化了收缩控件...

    listview headview

    描述中的“下拉listview headview会收缩”可能涉及到ListView的滚动事件监听和动画效果。为了实现这种效果,我们需要在ListView的滚动事件回调中处理头部视图的收缩动画。这通常通过实现`OnScrollListener`并重写`...

    Android常用控件(能折叠的ListView)--ExpandableListView的使用模仿QQ好友

    在Android开发中,ExpandableListView是一个非常实用的控件,它可以模拟折叠效果,类似于QQ好友列表,用户可以展开或收起各个组,显示或隐藏子项。本教程将详细介绍如何在Android应用中使用ExpandableListView来创建...

    android列表收缩与展开仿QQ好友列表

    ExpandableListView是Android提供的一个扩展版本的ListView,它支持子项的嵌套,即每个父项可以包含多个子项。在QQ好友列表中,每个好友分组(例如“我的好友”、“群聊”)就是一个父项,而每个分组下的好友则为...

    listview二级菜单

    为了提高用户体验,我们还可以添加动画效果,比如ListView的滑动过渡、展开收缩等。此外,注意处理边界情况,比如当没有二级菜单时应给出相应的提示。 在项目中,文件"multiListView1"可能是实现这一功能的源代码...

    安卓listview相关相关-CollapsingAvatarToolbar头像随ListView滚动缩回到ActionBar特效.rar

    这可以通过继承`SherlockActionBar`或`SupportActionBar`来完成,然后在自定义的ActionBar中添加一个ImageView来显示头像,并通过设置合适的布局参数和监听事件来实现头像的收缩效果。 在实际应用中,可能还需要...

    Android实现ListView的展开式动画ExpandAnimation[参考].pdf

    在Android开发中,ListView是一种常用的组件,用于展示可滚动的列表数据。为了增强用户体验,开发者经常需要为其添加各种动画效果,比如展开式动画。本文将详细介绍如何在Android中实现ListView的展开式动画...

    Android仿外卖点菜购物车左右联动悬浮效果

    在Android应用开发中,创建一个类似外卖点菜购物车的左右联动悬浮效果是一个常见的需求,它能提升用户体验,使得用户在浏览商品时可以方便地进行选择和操作。本项目主要涉及的技术点包括自定义View、ListView的使用...

Global site tag (gtag.js) - Google Analytics