CODEDRAGON ㆍDevelopment/Android
ConnectivityManager
· 네트워크 연결 상태 관련한 쿼리요청시 응답해 줍니다.
· ConnectivityManager는 네트워크 연결이 변경되었을때 어플리케이션에 알려줍니다.
· 시스템 서비스로 동작하기 때문에 Context.getSystemService(Context.CONNECTIVITY_SERVICE)를 통해서 ConnectivityManager 객체를 얻을 수 있습니다.
public class ConnectivityManager
extends Object
https://developer.android.com/reference/android/net/ConnectivityManager.html
ConnectivityManager 객체 생성
시스템 서비스로 동작하기 때문에 Context.getSystemService(Context.CONNECTIVITY_SERVICE)
를 통해서 ConnectivityManager 객체를 얻을 수 있습니다.
ConnectivityManager connectivityManager = (ConnectivityManager)getSystemService(Context.CONNECTIVITY_SERVICE); |
'Development > Android' 카테고리의 다른 글
RecyclerView 라이브러리 추가하기 - androidx.recyclerview:recyclerview (0) | 2019.09.17 |
---|---|
Service 생명주기 메소드 (0) | 2019.09.09 |
AsnycTask 클래스의 주요 메소드 (0) | 2019.08.29 |
비동기 작업 단계 (0) | 2019.08.29 |
스낵바 생성하기 (0) | 2019.08.28 |