user1169079
user1169079

Reputation: 3083

Absolute layout is deprecated

I am making Hidden Treasure game and facing lot of problem in making UI for the main game play ..Since absolute layout is deprecated, I am trying to work with relative layout but not getting the same.

Left most side of Screen will have list of objects,timer ...and right will have the gamescreen as it is done in basic Hidden Treasure games ...

Any suggestion ?

Upvotes: 0

Views: 2265

Answers (1)

Pavan
Pavan

Reputation: 721

we can use simple FrameLayout and set positions of the child views using LayoutParams.leftMargin and LayoutParams.topMargin

Upvotes: 2

Related Questions