Tôi đang mã hóa chế độ xem tùy chỉnh, được mở rộng từ RelativeLayout và tôi muốn thay đổi kích thước của chương trình, tôi phải làm thế nào?
Lớp xem tùy chỉnh là một cái gì đó như:
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);
}