Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What I currently have is a list that covers the whole screen and if you click on one of the items in the list, I want to float a fragment that only covers the right half of the screen. The left half of the screen should still be visible with the list (so that if I click on another item on the list, the corresponding fragment should pop) and the right side should now be covered by the fragment.

enter image description here

Having looked around, it seems like it's not possible to actually float a fragment over another view unless I use a DialogFragment but that doesn't accomplish what I want. Is this even possible to implement with fragments? Or should I pursue a different approach? The Android action bar seems more similar to what I'm trying to accomplish so I'm currently looking into that.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.