728x90
반응형
질문 : Android의 EditText보기에서 여러 줄을 허용 하시겠습니까?
EditText
보기에서 여러 줄을 허용하는 방법은 무엇입니까?
답변
기본적 EditText
위젯은 여러 줄로되어 있습니다.
다음은 몇 가지 샘플 코드입니다.
<EditText
android:inputType="textMultiLine" <!-- Multiline input -->
android:lines="8" <!-- Total Lines prior display -->
android:minLines="6" <!-- Minimum lines -->
android:gravity="top|start" <!-- Cursor Position -->
android:maxLines="10" <!-- Maximum Lines -->
android:layout_height="wrap_content" <!-- Height determined by content -->
android:layout_width="match_parent" <!-- Fill entire width -->
android:scrollbars="vertical" <!-- Vertical Scroll Bar -->
/>
출처 : https://stackoverflow.com/questions/4233626/allow-multi-line-in-edittext-view-in-android
728x90
반응형
'프로그래밍 언어 > Android' 카테고리의 다른 글
Android : 애니메이션 확장 / 축소 (0) | 2021.06.15 |
---|---|
프로그래밍 방식으로 Android 휴대 전화의 전화 번호 가져 오기 (0) | 2021.06.14 |
Android ListView를 새로 고치는 방법 (0) | 2021.06.14 |
색상이 다른 표준 Android 버튼 (0) | 2021.06.13 |
Android에서 투명한 활동을 생성하는 방법 (0) | 2021.06.12 |