我正在编码自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);
}