`

SlideExpandableListView滑动显示隐藏面板

阅读更多
快速实现一个滑动显示隐藏面板的ListView



基本用法:
listView = (ListView) view.findViewById(R.id.listView);

protected void notifyDataSetChanged() {
		if (adapter == null) {
			adapter = new CommonAdapter<T>(context, beans, layoutId) {
				@Override
				public void setValues(ViewHolder helper, T item, int position) {
					createItem(helper, item, position);
				}
			};
			listView.setAdapter(new SlideExpandableListAdapter(adapter,
				R.id.expandable_toggle_button, R.id.expandable));
		} else {
			adapter.notifyDataSetChanged();
		}
	}


在你的item布局文件中需要有ID为expandable_toggle_button的把手,和ID为expandable的面板容器
典型的像下面这样:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingLeft="8dp"
        android:paddingRight="8dp"
        android:orientation="vertical" >

        <TextView
            android:id="@+id/item_0"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center_vertical|start"
            android:gravity="center"
            android:singleLine="true"
            android:text="订单编号"
            android:textColor="@color/base_black"
            android:textSize="@dimen/font_middle" />

        <TextView
            android:id="@+id/item_1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center_vertical|end"
            android:gravity="center"
            android:paddingBottom="8dp"
            android:paddingTop="8dp"
            android:singleLine="true"
            android:text="进场时间"
            android:textColor="@color/base_black"
            android:textSize="@dimen/font_middle" />
    </LinearLayout>

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingLeft="8dp"
        android:paddingRight="8dp"
        android:orientation="horizontal" >

        <TextView
            android:id="@+id/item_2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center_vertical|start"
            android:gravity="center"
            android:singleLine="true"
            android:text="停车场名称"
            android:textColor="@color/base_black"
            android:textSize="@dimen/font_middle" />

        <ImageView
            android:id="@+id/expandable_toggle_button"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center_vertical|end"
            android:layout_marginRight="16dp"
            android:src="@drawable/bg_btn_more" />
    </FrameLayout>

    <LinearLayout
        android:id="@+id/expandable"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@color/base_gray"
        android:orientation="horizontal" 
        >

        <TextView
            android:id="@+id/btn_0"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:drawableTop="@drawable/bg_btn_0"
            android:gravity="center"
            android:singleLine="true"
            android:text="取消订单"
            android:textColor="@android:color/white"
            android:textSize="@dimen/font_middle" />
        
        <TextView
            android:id="@+id/btn_1"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:drawableTop="@drawable/bg_btn_0"
            android:gravity="center"
            android:singleLine="true"
            android:text="联系对方"
            android:textColor="@android:color/white"
            android:textSize="@dimen/font_middle" />
        <TextView
            android:id="@+id/btn_2"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:drawableTop="@drawable/bg_btn_0"
            android:gravity="center"
            android:singleLine="true"
            android:text="退订"
            android:textColor="@android:color/white"
            android:textSize="@dimen/font_middle" />
        <TextView
            android:id="@+id/btn_3"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:drawableTop="@drawable/bg_btn_0"
            android:gravity="center"
            android:singleLine="true"
            android:text="进场"
            android:textColor="@android:color/white"
            android:textSize="@dimen/font_middle" />
    </LinearLayout>

</LinearLayout>



如果你嫌上面的做法麻烦:
还有简单的,使用ActionSlideExpandableListView控件,无需指定具体的把手ID和面板ID;
但是我通常不这样做,因为毕竟使用的是ActionSlideExpandableListView,而不是普通的ListView,扩展性可能会受限制。
附件使用的是ActionSlideExpandableListView控件
public class MainActivity extends Activity {

	@Override
	public void onCreate(Bundle savedData) {

		super.onCreate(savedData);
		// set the content view for this activity, check the content view xml file
		// to see how it refers to the ActionSlideExpandableListView view.
		this.setContentView(R.layout.single_expandable_list);
		// get a reference to the listview, needed in order
		// to call setItemActionListener on it
		ActionSlideExpandableListView list = (ActionSlideExpandableListView)this.findViewById(R.id.list);

		// fill the list with data
		list.setAdapter(buildDummyData());

		// listen for events in the two buttons for every list item.
		// the 'position' var will tell which list item is clicked
		list.setItemActionListener(new ActionSlideExpandableListView.OnActionClickListener() {

			@Override
			public void onClick(View listView, View buttonview, int position) {

				/**
				 * Normally you would put a switch
				 * statement here, and depending on
				 * view.getId() you would perform a
				 * different action.
				 */
				String actionName = "";
				if(buttonview.getId()==R.id.buttonA) {
					actionName = "buttonA";
				} else {
					actionName = "ButtonB";
				}
				/**
				 * For testing sake we just show a toast
				 */
				Toast.makeText(
						MainActivity.this,
					"Clicked Action: "+actionName+" in list item "+position,
					Toast.LENGTH_SHORT
				).show();
			}

		// note that we also add 1 or more ids to the setItemActionListener
		// this is needed in order for the listview to discover the buttons
		}, R.id.buttonA, R.id.buttonB);
	}

	/**
	 * Builds dummy data for the test.
	 * In a real app this would be an adapter
	 * for your data. For example a CursorAdapter
	 */
	public ListAdapter buildDummyData() {
		final int SIZE = 40;
		String[] values = new String[SIZE];
		for(int i=0;i<SIZE;i++) {
			values[i] = "Item "+i;
		}
		return new ArrayAdapter<String>(
				this,
				R.layout.expandable_list_item,
				R.id.text,
				values
		);
	}



ExpandableLayout可扩展布局,各种动画效果
http://www.jcodecraeer.com/a/opensource/2015/0909/3431.html
  • 大小: 43.3 KB
分享到:
评论

相关推荐

    Android WebView上下滑动显示隐藏头部

    总结来说,实现"Android WebView上下滑动显示隐藏头部"的功能,主要步骤包括: 1. 创建并设置WebView,加载网页。 2. 使用`GestureDetector`监听滑动事件。 3. 根据滑动方向控制头部视图的显示和隐藏,可使用`...

    flex实现滑动显示隐藏效果

    标题中的"flex实现滑动显示隐藏效果"指的是使用Flex框架来创建一个可以滑动展示或隐藏内容的组件。这个功能在移动应用和网页设计中非常常见,比如侧边栏菜单、抽屉式导航或者可展开的详情区域。 首先,我们需要理解...

    微信小程序中的滑动页面隐藏和显示组件功能的实现代码

    在微信小程序中实现滑动页面隐藏和显示组件的功能,主要是为了提升用户体验,使页面元素在特定的滚动状态下自动隐藏或显示,以符合用户的使用习惯。例如,当页面滚动到一定高度时,导航栏或底部按钮等可以自动隐藏,...

    jQuery和css3滑动显示面板特效插件

    变换则允许我们对元素进行2D或3D空间的旋转、缩放、移动等操作,使得面板能够按照预设的方式滑动显示和隐藏。 在具体的实现中,index.html是主网页文件,它包含了HTML结构,引用了jQuery库和自定义的CSS及...

    主页滑动效果,滑动显示隐藏头部

    本项目“主页滑动效果,滑动显示隐藏头部”专注于实现一个类似天气应用主页的滑动菜单,通过使用RecyclerView来替代传统的ListView,从而提供更流畅、性能更好的滚动体验。 RecyclerView是Android SDK中的一个视图...

    滑动隐藏和显示头部

    在移动应用开发中,滑动隐藏和显示头部是一种常见的交互设计,主要应用于列表视图或者滚动内容区域。这种设计能够优化用户体验,使界面更加简洁,同时也提升了内容的可读性。下面将详细解释这一功能的实现原理、相关...

    滑动弹出面板代码(iPhone)

    当用户滑动时,手势识别器会触发相应的事件,你可以在此处理滑动行为,判断是否应该显示或隐藏面板。 3. **滑动动画** 当手势被识别后,根据滑动距离和方向计算面板的透明度和位置。可以使用UIView的`animate...

    QT QML Quick Controls2(Swipe View滑动翻页以及隐藏面板)

    在实际项目中,还可以使用Qt的信号和槽机制来处理页面切换事件,或者控制隐藏面板的显示状态。例如,你可能希望在切换到特定页面时自动打开或关闭面板,或者根据用户的操作来更新数据。 在提供的压缩包文件"ArtView...

    滑动显示和隐藏图片效果.rar_滑动显示和隐藏图片效果

    "滑动显示和隐藏图片效果"是jQuery库中常见的一个功能,它能够使图片以平滑、流畅的方式展示和隐藏,创造出吸引人的视觉体验。jQuery是一个轻量级的JavaScript库,它简化了JavaScript的DOM操作、事件处理、动画效果...

    listview滑动显示隐藏头部

    标题“listview滑动显示隐藏头部”指的是一个特定的交互设计,其中ListView的头部视图可以根据用户的上下滑动动作进行显示或隐藏。这种效果通常用于实现类似下拉刷新或者上滑加载更多的功能,但在这个案例中,它的...

    向上滑动隐藏标题栏,向下滑动显示标题栏

    在Android开发中,实现"向上滑动隐藏标题栏,向下滑动显示标题栏"的效果是一项常见的用户界面交互设计,尤其适用于手机应用中,以优化用户体验并最大化屏幕空间。这个功能通常被称为滑动手势控制的头部布局,使得...

    用户向下滑动view隐藏,向上滑动显示出来poppyview-master.zip

    在Android开发中,"用户向下滑动view隐藏,向上滑动显示出来"是一种常见的交互设计,通常用于实现如顶部导航栏、悬浮按钮或工具栏等元素的动态显示和隐藏。这种效果可以提升用户体验,使界面更加简洁且富有交互性。...

    android ListView向上滑动隐藏标题,下拉显示标题栏,完美解决滑动出现的空白问题。

    然而,在实际应用中,我们经常遇到标题栏在用户滚动列表时的交互需求,比如标题随着ListView的滑动而隐藏或显示,以优化用户体验并提高界面的空间利用率。本教程将详细讲解如何实现这个功能,同时解决滑动过程中可能...

    slide 左右滑动面板

    这可能包括`display: flex`或者`position: absolute/fixed`来定位面板,以及设置适当的宽度和溢出属性来控制面板的显示和隐藏。在本例中,我们可能会使用一个容器元素来包裹所有的面板,以便它们可以左右滑动。 2. ...

    jquery滑动显示和隐藏图片效果.rar

    本示例"jquery滑动显示和隐藏图片效果.rar"聚焦于一个常见的交互设计元素:通过滑动操作来控制图片的显示与隐藏,这在网页动态效果中非常常见,如轮播图、滑动面板等。这一技术主要依赖于jQuery的事件处理和CSS样式...

    仿QQ列表左右可滑动显示隐藏布局的item

    "仿QQ列表左右可滑动显示隐藏布局的item"是一个常见的功能,它模仿了QQ等社交应用中的交互设计,提高了用户的操作效率和使用体验。这个功能的核心在于实现一个可滑动的列表项,其内部包含可隐藏和显示的布局,用户...

    仿QQ消息列表,item向左滑动显示隐藏布局

    在Android开发中,实现“仿QQ消息列表,item向左滑动显示隐藏布局”的功能是一项常见的交互设计。这种设计能够为用户提供便捷的操作,比如快速回复、删除或执行其他操作。以下将详细介绍如何实现这一功能。 首先,...

    Android list列表滑动显示隐藏toolbar(ListView)

    本示例"Android list列表滑动显示隐藏toolbar(ListView)"旨在实现一个类似Google Plus应用中的功能,即当用户上下滑动ListView时,顶部的ToolBar会随之进行隐藏或显示的动画效果,这种设计可以增加用户体验,使得...

    ScrollView实现自定义RelativeLayout跟随手势上下滑动显示隐藏

    本示例中,我们将探讨如何实现一个特定的功能,即让一个自定义的RelativeLayout根据用户的手势上下滑动来显示或隐藏顶部标题栏。这在很多应用中都非常实用,比如模仿常见的抽屉式导航菜单效果。 首先,我们需要了解...

Global site tag (gtag.js) - Google Analytics