Bakih
Bakih

Reputation: 286

layout over layout on android

I have a screen that contains there different layout.

BigLayout [it contains all three layout]

LayoutA - title LayoutB - body LayoutC - button the title layout contain TextView, Button and CheckedTextView and of it in the BighLayout, if i want that the CheckedTextView will be display over the body layout, how can i do such a thing?

Upvotes: 0

Views: 2183

Answers (2)

Vincent Mimoun-Prat
Vincent Mimoun-Prat

Reputation: 28541

Check out the RelativeLayout, it does what you need.

Upvotes: 1

Vivek
Vivek

Reputation: 4260

if u want to show one layout over other layout u can use framelayou. so u can take 1] Layout A as a frame layout 2] layout B as a frame layout. so that u can able to show CheckedTextView over the body layout

Upvotes: 1

Related Questions