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
- android studio
- In-app Billing
- contentprovider
- 배포
- Activity 수명 주기
- xcode
- 트위터
- Android O
- Google Cloud Messasging
- 카카오톡
- HTTP
- 다른 앱에서 열기
- Unchecked Exception
- GCM
- Push
- AccountManager
- ios9
- Android
- ios
- Android O Preview
- BLOCK
- gradle
- signing
- unreal
- 데이터 공유
- 페이스북
- Google Cloud Messasing
- 안드로이드 개발 레벨업 교과서
- NSURLConnection
- service
Archives
- Today
- Total
목록UriMatcher (1)
노블의 개발이야기
[Android] UriMatcher
ContentProvider를 공부하던 중 UriMatcher를 보게되었다. UriMatcher란? 두 개의 Uri를 비교하여 해당하는 값을 출력해주는 기능을 하는 class 이다. URI 구성 content://com.androidhuman.phoneprovider/phones/lg/3 URI는 크게 authority와 path로 구성되어 있다. Description content:// 컨텐트 프로바이더에 의해 제공되는 데이터임을 알린다. 이부분은 변하지 않는다. com.androidhuman.phoneprovider 컨텐트 프로바이더의 authority 부분이다. 각 컨텐트 프로바이더의 고유 이름이다. phones/lg 컨텐트 프로바이더의 path 부분이다. 어떤 데이터를 변환할지를 이 부분을 통해 ..
Android
2017. 7. 24. 11:43