Home > Mobile >  how to make rounded corners for FragmentContainerView in android studio?
how to make rounded corners for FragmentContainerView in android studio?

Time:09-30

I have a fragment container view that changes the fragment based on the selection in a spinner. I want the fragments to have rounded corners. I believe adding rounded corners to fragmentContainerView will do what I need? How can I do this? I tried adding a drawable resource file(shape) to background but it didn't work.

My drawable resource file

My drawable.xml file

My activity.xml code

My activity.xml code

The way it still shows in the app. The red part is the FragmentContainerView

The way it still shows in the app

CodePudding user response:

CustomerRegisterFragment have it‘s own background which will cover the FragmentContainerView background you set.

CodePudding user response:

I found out that in order for the drawable resource file to take effect, it must contain the tag <solid> with a color attribute. Then it displays as required

  • Related