일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- deprecating the install_referrer
- RXjava
- Retrofit2
- 안드로이드
- android P
- RxJava2
- Switch to the Play Referrer API by March 1
- hardcoded string search
- rxandroid
- RX
- andorid studio
- Rx자바
- 하드코드검색
- Android
- java
Archives
- Today
- Total
Lucky Dog
[안드로이드] NFC on/off 설정 본문
NFC 인텐트 액션은 안드로이드 세팅에 정의된 값으로 설정해서 startActivity 한다.
Intent intent = null; if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) { intent = new Intent(Settings.ACTION_NFC_SETTINGS); } else { intent = new Intent(Settings.ACTION_WIRELESS_SETTINGS); } startActivity(intent); |