1

我的活动中的布局类似于以下内容:

<android.support.v7.widget.CardView
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_behavior="@string/appbar_scrolling_view_behavior">

    <android.support.v4.widget.NestedScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fillViewport="true">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical"
            android:paddingLeft="10dip"
            android:paddingRight="10dip">

        <EditText
            android:id="@+id/noteBodyEdit"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:inputType="textCapSentences|textMultiLine"
            android:overScrollMode="always"
            android:scrollbarStyle="insideInset"
            android:scrollbars="vertical" />
        </LinearLayout>
    </android.support.v4.widget.NestedScrollView>
</android.support.v7.widget.CardView>

此视图作为内容视图包含在 CoordinatorLayout 中,并添加了带有工具栏的标准 AppbarLayout。

使用此代码,我希望 Scrollview 和 EditText 填充所有内容视图。但是,在这种形式中,它们以 wrap_content 行为结束。

如果我更改代码并将 layout_behavior 从 CardView 移动到 Scrollview,fillportview 问题修复,但随后工具栏部分覆盖了内容。

任何想法如何用任何一种方式解决这个问题:

  1. 使用 CardView 上的行为并拉伸 ScrollView 以填充视口
  2. 或者,使用 ScrollView 上的行为并使其显示在工具栏下方。
4

1 回答 1

2

在我更新到支持库 23.0.0 后,问题似乎消失了。

于 2015-09-02T07:12:05.477 回答