All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.robobinding.widget.adapterview.ItemLayoutsUpdater Maven / Gradle / Ivy

There is a newer version: 0.8.14
Show newest version
package org.robobinding.widget.adapterview;

import java.util.List;

/**
 * 
 * @since 1.0
 * @author Cheng Wei
 */
public class ItemLayoutsUpdater implements RowLayoutsUpdater {
	private final RequiresItemLayoutIds receiver;

	public ItemLayoutsUpdater(RequiresItemLayoutIds receiver) {
		this.receiver = receiver;
	}

	@Override
	public void updateRowLayouts(List itemLayoutIds) {
		receiver.setItemLayoutIds(itemLayoutIds);
	}
	
	public static interface RequiresItemLayoutIds {
		void setItemLayoutIds(List itemLayoutIds);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy