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>
答案 0 :(得分:0)
您错过了orientation
的{{1}}。默认值为LinearLayout
,因此第二个视图在屏幕右侧。如果您错过任何horizontal
将此添加到您的根LinearLayout
LinearLayout