반응형
[2021.09.11] How to change the virtual device screen text in android studio? (+ How to solve error : Hardcoded text ?)
이번 게시글은 안드로이드 스튜디오에서 가상 장치를 실행하여 나타난 화면의 text를 바꾸는 방법에 대해 알아보자.
-> 왼쪽을 보면 Hello World로 되어 있다. 이 문장을 바꿔 보자.
우선 Split를 눌러준다.
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="안녕 injekim97의 첫 번째 모바일 앱이야!"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
-> 그런 다음에, android:text=" 바꾸고자 할 말"로 지정해주면 된다.
그런데 여기서 하나의 경고(Hardcoded text)가 발생한다.
---------------------------------------------------------------------------------------------------------------------------------
* Hardcoded text 에러 해결 방법
-> 우선 경고창 아래를 내려보면 Fix가 있는데 클릭 하자.
-> fix를 클릭하면 위와 같이 뜨는데 그대로 OK 클릭
-> Hardcoded text 에러가 사라지면서 정상적으로 text가 바뀌었다!
빌드해서 제대로 되었는지 확인해보자
성공 ^^
반응형
댓글