Я кодую спеціальний вигляд, розширений з RelativeLayout, і я хочу його змінити в розмірі програмно. Як це зробити?
Спеціальний клас перегляду - це щось на кшталт:
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);
}