Saya mengode tampilan kustom, diperpanjang dari RelativeLayout, dan saya ingin mengubah ukurannya secara terprogram, Bagaimana saya bisa melakukannya?
Kelas tampilan kustom adalah sesuatu seperti:
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);
}