Reputation: 249
i'm creating an app, and i'm kinda knew in android develpment, i don't have much experience, but i've bee maneging well. My app is almost complete and now i want to improve the looks. Anyone knows how to put the widgets inside boxes, separated from background ? Like, i'll give you an example:
Upvotes: 0
Views: 30
Reputation: 128428
Anyone knows how to put the widgets inside boxes, separated from background ?
=> You can use the CardView
provided in support library. CardView
is nothing but a FrameLayout
so you can include whatever views inside it!
For more reference, go through the Creating Lists and Cards.
Upvotes: 1