Im making a music player/library app in wich I would like a frame/toolbar on top of all other activities as a header. This frame/toolbar will show information about the current playing track and have some controlls like play, next and stop etc. and be a separate selfsufficiennt activity. Is this possible and if so, how?
Share
You can create an
ActivityGroup. This is howTabHostis implemented. So yourActivityGroupwould fill the whole window and implement the toolbar. Then you could swap outActivitiesin the bottom part.