當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。