Is it possible to center a layout/view inside CoordinatorLayout?

Hải Nguyễn picture Hải Nguyễn · Jul 23, 2015 · Viewed 24.2k times · Source

I have a FrameLayout inside CoordinatorLayout to inflate my fragments which contain RecyclerView. The thing is, I want to display a progress bar when loading the RecyclerView, but the progress bar is always at the top of the screen under the Toolbar. I have tried various layouts, setting gravity or centerInParent but none had worked. So is there any way to achieve this?

Answer

Defuera picture Defuera · Dec 11, 2015
    android:layout_gravity="center" 

works just fine. And remove your FrameLayout, it's redundant.