本文整理匯總了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);
}
}