package org.itsnat.droid.impl.xmlinflater.layout.attr.widget; import android.view.View; import android.widget.ExpandableListView; import org.itsnat.droid.impl.xmlinflater.layout.AttrLayoutContext; import org.itsnat.droid.impl.xmlinflater.layout.classtree.ClassDescViewBased; import org.itsnat.droid.impl.xmlinflater.shared.attr.AttrDescReflecFieldGetIntRound; /** * Created by jmarranz on 30/04/14. */ public class AttrDescView_widget_ExpandableListView_indicatorLeft extends AttrDescReflecFieldGetIntRound<ClassDescViewBased,View,AttrLayoutContext> { public AttrDescView_widget_ExpandableListView_indicatorLeft(ClassDescViewBased parent) { super(parent,"indicatorLeft","mIndicatorRight",-1); } protected void callMethod(View view,int value) { ((ExpandableListView) view).setIndicatorBounds(value,getField(view)); } }