I'm trying to create a perspective wit n views arranged horizontally, each view _same_ horizontal size. I did not understand the API documentation:
*@paramratiotheamountofspacedonatedtothenewpart,intherange *<code>0.05f</code>to<code>0.95f</code>;valuesoutsidethisrange
To which view/space is this ratio related? Can I only control one dimension?
Having 4 views I tried the following approach which does not give the desired result (it is more or less what I want but horizontal sizes are not equal).
Assuming ratio is per page
layout.addView(VIEW_A_ID, IPageLayout.TOP, (float)0.25, IPageLayout.ID_EDITOR_AREA); layout.addView(VIEW_B_ID, IPageLayout.RIGHT, (float)0.25, VIEW_A_ID); layout.addView(VIEW_C_ID, IPageLayout.RIGHT, (float)0.25, VIEW_B_ID); layout.addView(VIEW_D_ID, IPageLayout.RIGHT, (float)0.25, VIEW_C_ID);