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