Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 김영한
- http
- pointcut
- db
- 알고리즘
- kotlin
- transaction
- 백준
- jpa
- AOP
- QueryDSL
- Android
- 인프런
- JPQL
- SpringBoot
- Exception
- Greedy
- 스프링 핵심 원리
- java
- 자바
- 그리디
- Proxy
- Thymeleaf
- 스프링
- JDBC
- Servlet
- Spring Boot
- springdatajpa
- spring
- 스프링 핵심 기능
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)
'인프런 > [인프런] 앱 8개를 만들면서 배우는 안드로이드 코틀린' 카테고리의 다른 글
[Android] Activity간 data 전달, Intent putExtra (0) | 2022.03.17 |
---|---|
[Android] CardView, 모서리 둥글게, cardCornerRadius (0) | 2022.03.17 |
Margin, Padding (0) | 2022.03.17 |
[Android] Splash, Handler (0) | 2022.03.17 |
[Android] NumberFormat (0) | 2022.02.13 |
Comments