在多行输入时如何使 <EditText 不可移动?
How to make the <EditText non moveable when typing in multiple line?
我试图让编辑文本不可移动,但我不知道怎么做,你能帮帮我吗?我只使用相对布局
<EditText
android:id="@+id/textinput"
android:layout_width="331dp"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="85dp"
android:ems="10"
android:gravity="start|top"
android:inputType="textNoSuggestions|textMultiLine"
android:scrollHorizontally="true"
android:hint="Input your secret text here.."/>
如下图link
here is the screenshot of the problem
好的,我找到了解决方案
android:lines="1"
只需添加这一行:)
我试图让编辑文本不可移动,但我不知道怎么做,你能帮帮我吗?我只使用相对布局
<EditText
android:id="@+id/textinput"
android:layout_width="331dp"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="85dp"
android:ems="10"
android:gravity="start|top"
android:inputType="textNoSuggestions|textMultiLine"
android:scrollHorizontally="true"
android:hint="Input your secret text here.."/>
如下图link
here is the screenshot of the problem
好的,我找到了解决方案
android:lines="1"
只需添加这一行:)