Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

1 Answer

up vote 0 down vote accepted

You need to add the layout params for the app. Right now your relative layout has no width or height.

ViewGroup.LayoutParams lp = new 
        LayoutParams(LayoutParams.FILL_PARENT,LayoutParams.FILL_PARENT);

myLayout = new RelativeLayout(this);
myLayout.setLayoutParams(lp);

This should work. if it doesnt put your stacktrace.

share|improve this answer
Doesnt work. Thread [<1> main] (Suspended (exception RuntimeException)) ActivityThread.performLaunchActivity(ActivityThread$ActivityClientRecord, Intent) line: 1815 ActivityThread.handleLaunchActivity(ActivityThread$ActivityClientRecord, Intent) line: 1831 ActivityThread.access$500(ActivityThread, ActivityThread$ActivityClientRecord, Intent) line: 122 ActivityThread$H.handleMessage(Message) line: 1024 Activity...ain(String[]) line: not available [native method] – beans Sep 21 '11 at 13:16
are you doing this in another thread? – blessenm Sep 21 '11 at 13:35

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.