当前位置: 首页>>代码示例>>Java>>正文


Java DynamicListView.setDynamicTouchChild方法代码示例

本文整理汇总了Java中com.nhaarman.listviewanimations.widget.DynamicListView.setDynamicTouchChild方法的典型用法代码示例。如果您正苦于以下问题:Java DynamicListView.setDynamicTouchChild方法的具体用法?Java DynamicListView.setDynamicTouchChild怎么用?Java DynamicListView.setDynamicTouchChild使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.nhaarman.listviewanimations.widget.DynamicListView的用法示例。


在下文中一共展示了DynamicListView.setDynamicTouchChild方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: setAbsListView

import com.nhaarman.listviewanimations.widget.DynamicListView; //导入方法依赖的package包/类
@Override
public void setAbsListView(final AbsListView listView) {
	mListView = listView;

	if (mDecoratedBaseAdapter instanceof ListViewSetter) {
		((ListViewSetter) mDecoratedBaseAdapter).setAbsListView(listView);
	}

	if (mListView instanceof DynamicListView) {
		DynamicListView dynListView = (DynamicListView) mListView;
		dynListView.setIsParentHorizontalScrollContainer(mIsParentHorizontalScrollContainer);
		dynListView.setDynamicTouchChild(mResIdTouchChild);
	}
}
 
开发者ID:xulailing,项目名称:android-open-project-demo-master,代码行数:15,代码来源:BaseAdapterDecorator.java

示例2: setTouchChild

import com.nhaarman.listviewanimations.widget.DynamicListView; //导入方法依赖的package包/类
/**
 * If the adapter's list-view is hosted inside a parent(/grand-parent/etc) that can scroll horizontally, horizontal swipes won't
 * work, because the parent will prevent touch-events from reaching the list-view.
 *
 * If a list-item view has a child with the given resource-ID, the user can still swipe the list-item by touching that child.
 * If the user touches an area outside that child (but inside the list-item view), then the swipe will not happen and the parent
 * will do its job instead (scrolling horizontally).
 *
 * @param childResId The resource-ID of the list-items' child that the user should touch to be able to swipe the list-items.
 */
public void setTouchChild(final int childResId) {
	mResIdTouchChild = childResId;
	if (mListView instanceof DynamicListView) {
		DynamicListView dynListView = (DynamicListView) mListView;
		dynListView.setDynamicTouchChild(mResIdTouchChild);
	}
}
 
开发者ID:xulailing,项目名称:android-open-project-demo-master,代码行数:18,代码来源:BaseAdapterDecorator.java


注:本文中的com.nhaarman.listviewanimations.widget.DynamicListView.setDynamicTouchChild方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。