728x90

코드를 작성 하다보니 

'Do not concatenate text displayed with setText.

Use resource string with placeholder'

 

해석 하면

'표시된 텍스트를 설정된 텍스트와 연결하지 마십시오.
자리 표시자와 함께 리소스 문자열 사용'

 

이렇게 나온다.

역시 구글링을 하니 답이 나온다.

 

stackoverflow.com/questions/33164886/android-textview-do-not-concatenate-text-displayed-with-settext

 

Android TextView : "Do not concatenate text displayed with setText"

I am setting text using setText() by following way. prodNameView.setText("" + name); prodOriginalPriceView.setText("" + String.format(getString(R.string.string_product_rate_with_ruppe_sign), "" +...

stackoverflow.com

developer.android.com/guide/topics/resources/string-resource?hl=ko

 

스택오버플로우에도 있고 안드로이드 공식 문서에도 나와 있다.

 

%1$s는 문자열이고 %2$d는 10진수 라는데 이쪽을 조금더 알아 봐야겠다.

728x90

+ Recent posts