728x90
반응형
Textview에는 3줄이상 사용하면 strings.xml을 사용하는 것을 권장한다.
(사실 TextView에 3줄 이상 쓰는 일은 거의 없다. 그러나 초안을 만들때 사용할 수도 있으므로 알아두면 여러모로 좋다.)
1. strings.xml
<string name="Notification">
안녕하세요. XXX입니다. \n
공지사항 안내드리니 하기 내용 참고하시어 이번주까지 답변 부탁드리겠습니다. \n \n
- 교육내용 - \n
일시 : 4월 15일(14:00) \n
장소 : 7층 대회의실 \n
내용 : MZ와 같이 일하는 방법 \n \n
궁금하신 점 있으시면 저에게 문의주세요. \n
감사합니다.
</string>
strings의 줄바꿈은[ \n ]을 해줘야한다. (띄어쓰기를 해줘야한다!)
2. activity.xml
<TextView
android:id="@+id/notification_message"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:text="@string/Notification"
android:textColor="@color/black"
android:textSize="20sp" />
3. 화면에는 이렇게 나온다.
728x90
반응형
'Android Kotlin' 카테고리의 다른 글
Android Studio 보일러플레이트 (0) | 2023.06.12 |
---|---|
AndroidStudio Coroutine : 경량스레드 (0) | 2023.06.05 |
AndroidStudio Jetpack LiveData (1) | 2023.06.02 |
Android Studio AutoCompleteTextView 클릭 시, Fragment로 전환하기 (0) | 2023.04.03 |
Android Studio 토글 누르면 DrawerLayout 꺼내기 ( setSupportActionBar로 ) (0) | 2023.03.31 |