Я использую Linear Layout в своем коде и хочу добавить кнопки в свою деятельность, используя вертикальную полосу прокрутки.Но я не могу добавить более одной кнопки в Android.Перетаскивание не работает, а также не работает ручное кодирование XML.Пожалуйста, помогите
activity_main.xml:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView 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:id="@+id/scroll"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/chco"
tools:context="com.example.tset.test.Prerequisites">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
</LinearLayout>
</ScrollView>
![enter image description here](https://i.stack.imgur.com/GKuFD.png)