In the following code , Why I can not set a custom size for my relativeLayout
object? The resolution of my device is 240 * 320.
RelativeLayout relativeLayout;
@Override
protected void onCreate(Bundle bundle){
super.onCreate(bundle);
relativeLayout = new RelativeLayout(this);
relativeLayout.getLayoutParams().width=240;
relativeLayout.getLayoutParams().height=320;
setContentView(relativeLayout);}