SnapdragonCamera: Fix ANR caused by layout logic

child view calls setLayoutParams() in parent view onLayout(),
this may lead to a recursion:
Child layout params changed -> parent onRequestLayout ->
parent view onLayout -> child layout params changed.
At last, main thread is busy in processing this unnecessary
recursion and block.
So move the setLayoutParams() int parent view onSizeChanged().

Change-Id: Ie230abe25caa9bd38f134f41257188cd335f7975
CRs-Fixed: 1105184
1 file changed