일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- rxandroid
- android P
- Rx자바
- Android
- Retrofit2
- RXjava
- hardcoded string search
- RxJava2
- RX
- 하드코드검색
- 안드로이드
- java
- andorid studio
- deprecating the install_referrer
- Switch to the Play Referrer API by March 1
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); |
Comments