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);
}