androidandroid-fragmentsbackgroundtabactivity

Tabbed Activity background fixed (not movable)


I have a Tabbed Activit. I created 3 fragments with relative xml. I want to set a fixed background for all fragments. Now I set a background in each xml and obviously tha background change when i swipe from a fragment to other fragment.

How can I do?

Thanks Sorry for my english


Solution

  • I'd suggest to set a background for the activity, and set transparent background for the fragments:

    android:background="@android:color/transparent"

    Also this stack flow question might help you.