I have another class other than my main class, and inside this I want to add a layout prgamatically with:
myLayout = new RelativeLayout(this);
But it crashes the app, why?
|
I have another class other than my main class, and inside this I want to add a layout prgamatically with:
But it crashes the app, why? |
|||
|
|
|
You need to add the layout params for the app. Right now your relative layout has no width or height.
This should work. if it doesnt put your stacktrace. |
|||||
|