本文整理汇总了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);
}
}
示例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);
}
}