ScrollView
не работает в макете с android.support.v7.widget.Toolbar
В коде, который вы видите, все правильно, если Toolbar
удален. Если добавлено Toolbar
, кнопка и ее содержимое не будут отображаться
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<include
android:id="@+id/toolbar"
layout="@layout/myToolBarRed"
android:layout_margin="2dp" />
<ScrollView
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<!-- Content here -->
<Button
android:text="Button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/button1" />
</LinearLayout>
</ScrollView>
</LinearLayout>