org.robobinding.widget.adapterview.ItemLayoutsUpdater Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of robobinding Show documentation
Show all versions of robobinding Show documentation
A Presentation Model(MVVM) framework for the Android platform
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