I got RelativeLayout in content:
<RelativeLayout xmlns:
android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:maxWidth="350dp"
></RelativeLayout>
android:maxWidth="350dp" doesn't work. With wrap_content for layout_width and layout_height neither works `.
android:layout_width="match_parent"that means your layout will be as alrge in width as it's possible - A. Shevchukwrap_contentbut its the same. - Janusz j.