Проблема заключается в том, что элементы в Relative Layout никак не хотят ставиться по центру горизонтально, даже если свойство layout center horizontal = true, Relative Layout вложен в Scroll View.
Помогите, очень буду благодарен
<?xml version="1.0" encoding="utf-8"?>
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="match_parent"
android:layout_width="match_parent">
<RelativeLayout
android:layout_height="wrap_content"
android:layout_width="wrap_content">
<ProgressBar
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_centerHorizontal="true"/>
</RelativeLayout>
</ScrollView>