ScrollView无法使用android.support.v7.widget.Toolbar进行布局

时间:2018-05-09 13:27:12

标签: android xamarin

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>

1 个答案:

答案 0 :(得分:0)

您错过了orientation的{​​{1}}。默认值为LinearLayout,因此第二个视图在屏幕右侧。如果您错过任何horizontal

中的方向属性,Lint检查会显示警告

将此添加到您的根LinearLayout

LinearLayout