There is a markup of the form:
<RelativeLayout xmlns:tools="http://schemas.android.com/tools" xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:background="@drawable/background" tools:context="ru.mail.xaxa.InndexActivity" > <android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/toolbar" android:layout_width="match_parent" android:layout_height="55dp" android:layout_alignParentLeft="true" android:layout_alignParentTop="true" android:background="#2196f3" > </android.support.v7.widget.Toolbar> <View android:id="@+id/view1" android:layout_width="match_parent" android:layout_height="6dp" android:layout_alignParentLeft="true" android:layout_below="@+id/toolbar" android:background="@drawable/toolbar_dropshadow" /> <ImageButton android:id="@+id/imageButton1" android:layout_width="100dp" android:layout_height="145dp" android:layout_alignParentLeft="true" android:layout_below="@+id/view1" android:layout_marginLeft="37dp" android:layout_marginTop="55dp" android:background="@null" android:src="@drawable/lenin" /> <ImageButton android:id="@+id/imageButton2" android:layout_width="100dp" android:layout_height="145dp" android:layout_alignParentRight="true" android:layout_alignTop="@+id/imageButton1" android:layout_marginRight="37dp" android:background="@null" android:src="@drawable/dedchit" /> </RelativeLayout> How do I add ScrollView here? I tried to wrap it all in but failed. I would be grateful for the help!