Estoy codificando una vista personalizada, extendida desde RelativeLayout, y quiero cambiar su tamaño programáticamente. ¿Cómo puedo hacerlo?
la clase de vista personalizada es algo así como:
public ActiveSlideView(Context context, AttributeSet attr){
super(context, attr);
LayoutInflater inflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
if(inflater != null){
inflater.inflate(R.layout.active_slide, this);
}