Koduję widok niestandardowy rozszerzony z RelativeLayout i chcę programowo zmienić jego rozmiar. Jak mogę to zrobić?
klasa widoku niestandardowego jest podobna do:
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);
}