EditText的高度不会扩展到其父级的高度

问题描述 投票:1回答:3

我在滚动视图中放置了一个编辑文本,其高度为= match_parent,并且预期其高度等于滚动视图,但事实并非如此。它的高度表现得像wrap_content,这意味着如果EditText中没有文字,我将不得不将光标指向弹出的软键盘的第一个“线”,我想要的是我可以触摸屏幕中的任何位置(滚动)视图)弹出软键盘。

以下是布局,感谢您的帮助。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1">
        <EditText
            android:id="@+id/editText"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="@android:color/transparent"
            android:gravity="top"
            android:padding="10dp"
            android:textSize="16sp"
            android:textColor="@android:color/black">
        </EditText>
    </ScrollView>

    <Button
        android:id="@+id/btnPaste"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="@string/paste"
        android:gravity="center"
        android:onClick="pasteData"
        android:layout_marginLeft="5dp"
        android:layout_marginRight="6dp"
        android:layout_marginBottom="5dp"
        android:background="@drawable/rounded_corner_button"
        android:textColor="@android:color/white"/>
</LinearLayout>

布局捕获:

enter image description here

android android-edittext height parent
3个回答
2
投票

在ScrollView中添加此行。

android:fillViewport="true"


1
投票

您可以通过更改minLines属性来控制编辑文本

例如 :

<EditText
            android:id="@+id/ed_comment"
            style="@style/EditText.NoBackground"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="top"
            android:hint="@string/write_comment_hint"
            android:minLines="40"
            android:textSize="16sp"/>

而不是通过scrollView包装EditText而不是将此属性添加到editText

android:scrollbars="vertical"

结果:

enter image description here


0
投票

将它实现到xml文件中的EditText:

android:scrollbars="vertical"

在onCreate()中实现它:

 editText.setMovementMethod(new ScrollingMovementMethod());

然后,如果你只将它用于textview,你将不需要scrollview,它只是使你的textview可滚动。

© www.soinside.com 2019 - 2024. All rights reserved.