ScrollView节点下只能有一个子节点
当需要有多个子节点时可以用一个layout节点将其他节点包起来
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
>
<TextView>
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/tv_show"
/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/btn"
android:text="show"
/>
</LinearLayout>