Я кодирую пользовательский вид, расширенный из 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);
}