gpt4 book ai didi

android - 在 CoordinatorLayout 内的 Cardview 内带有 EditText 的 NestedScrollview 不填充视口(viewport)

转载 作者:行者123 更新时间:2023-11-29 20:31:17 24 4
gpt4 key购买 nike

我的 Activity 中有一个类似于以下的布局:

<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>

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

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

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

关于如何用这两种方式解决这个问题的任何想法:

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

最佳答案

看起来问题在我更新到支持库 23.0.0 后就消失了。

关于android - 在 CoordinatorLayout 内的 Cardview 内带有 EditText 的 NestedScrollview 不填充视口(viewport),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31907159/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com