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