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.

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.