У меня есть фрагмент с этим макетом:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="My Fragment"
android:textSize="30sp"
android:layout_centerInParent="true"/>
</RelativeLayout>
В предварительном просмотре Android Studio я вижу это:
Что нормально, но на эмуляторе или на реальном устройстве я вижу:
Чего мне не хватает?Как центрировать этот текст в родительском элементе?
Родительский макет: FrameLayout
:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<android.support.v7.widget.Toolbar
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:id="@+id/toolbar"/>
<FrameLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:id="@+id/frame_layout">
</FrameLayout>
</LinearLayout>