[Android]가로,세로 스크롤 되는 EditText 만들기

프로그래밍/Android 2018.06.05 댓글 Plorence

꼭 EditText가 아니더라도,가로 세로 스크롤 되는 뷰가 필요할때도 있습니다. 하지만 이번에는 EditText를 중심으로 가로,세로 스크롤이 되는 뷰를 만들겁니다.

저같은경우 간단한 코드에디터를 기능으로 개발해야 될때가 있어서 여기에 응용을 했습니다.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
 <HorizontalScrollView
                    android:layout_width="match_parent"
                    android:layout_height="match_parent">
 
                    <kr.plorence.jsandbot.CodeEditor
                        android:id="@+id/editor"
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:background="@null"
                        android:inputType="textMultiLine"
                        android:singleLine="false"
                        android:scrollbars="vertical"
                        android:text="Name" />
 </HorizontalScrollView>
cs

<kr.plorence.jsandbot.CodeEditor는 EditText를 상속받는 클래스입니다. 이거 대신에 EditText를 써주시면 됩니다.

적용후 갤럭시s9+ 사진

댓글