<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
android:title="@string/game_title">
I've a preference screen for my app for which I've added the title. When the app gets opened in split screen and resized to different size in window, the title is disappearing when the width present is smaller.
Tried adding,
android:layout_height="wrap_content"
android:layout_width="wrap_content"
property to the PreferenceScreen
but it didn't help. Some help would be appreciated.