The linear layout in android is like this... Layout available
But I want a layout that will move the inner widget down instead of forward like this Layout I want
CodePudding user response:
there is no layout in Android, which can do such replacing, but you can use Flexbox
lib from Google
CodePudding user response:
If you want to only use linear layout then you can do nesting of 2 linear layout in 1 : orientation will be vertical, and horizontal in other
To make it more easy, use relative/constraint layout.