On Android, EditText basically allows multiple lines.
<EditText
android:inputType="textMultiLine" <!--Set MultiLine for inputType -->
Android:lines="8" <!-- Make it look like 8 lines on the screen. -->
android:minLines="6" <!-- Minimum of 6 lines -->
android:maxLines="10" <!-- Up to 10 lines -->
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:scrollbars="vertical" <!--Set vertical scrollbar -->
/>
581 PHP ssh2_scp_send fails to send files as intended
572 rails db:create error: Could not find mysql2-0.5.4 in any of the sources
578 Understanding How to Configure Google API Key
915 When building Fast API+Uvicorn environment with PyInstaller, console=False results in an error
574 Who developed the "avformat-59.dll" that comes with FFmpeg?
© 2024 OneMinuteCode. All rights reserved.