Notice
Recent Posts
Recent Comments
Link
«   2024/12   »
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31
Archives
Today
Total
관리 메뉴

개발자되기 프로젝트

[Android] Resource 본문

<resources>
    <string name="tip_amount">Tip Amount: %s</string>
</resources>

위와 같이 resource에 Tip Amount: %s가 있다고 하자.

 

%s 자리에는 다른 string이 들어가는 자리이다.

 

해당 Resource를 불러오기 위해서는 다음과 같이 사용하면 된다.

 

getString(R.string.tip_amount, formattedTip)
Comments