반응형
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 스랄 특성
- 리눅스
- 소캣(Socket)
- 아이폰
- 게임
- php 홈디렉토리 변경방법
- unity
- 에셋
- tcp네트워크
- 아이패드
- 벨팡
- 나지보
- 안드로이드 Application Lifecycle
- 집 정리
- 어플
- 컬렉션 프레임
- 기업의 행포
- 안드로이드
- 비행기 모드
- 변경된 정보
- 자바
- 포트(Port)
- game
- 히오스
- tcp
- Collection Framework
- 나지보 특성
- 명령어
- TCP 네트워크 방식의 연결
- End of Darkness
Archives
- Today
- Total
Do Something IT
[안드로이드] 네트워크 체크 4g 본문
반응형
4G 체크는 android 2.3.1 부터 지원한다.
다운로드 예제:
package wiz.networktest.com; ipackage wiz.networktest.com; import android.app.Activity; import android.content.Context; import android.net.ConnectivityManager; import android.net.NetworkInfo; import android.os.Bundle; public class NetworkTest extends Activity { boolean isInternetWiMax = false; boolean isInternetWiFi = false; boolean isInternetMobile = false; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); ConnectivityManager cm = (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE); if (cm.getActiveNetworkInfo() != null) { NetworkInfo activeNetwork = cm.getActiveNetworkInfo(); switch (activeNetwork.getType()) { case ConnectivityManager.TYPE_WIMAX: // 4g 망 체크 isInternetWiMax = true; break; case ConnectivityManager.TYPE_WIFI: // wifi망 체크 isInternetWiFi = true; break; case ConnectivityManager.TYPE_MOBILE: // 3g 망 체크 isInternetMobile = true; break; } }else{ Toast.makeText(this,"네트워크가 연결되어 있지 않습니다. 확인해주세요").show(); } Toast.makeText(this, "4g is "+isInternetWiMax + "\nwifi is "+isInternetWiFi +"\n3g is "+ isInternetMobile, Toast.LENGTH_LONG).show(); } }
다운로드 예제:
반응형
'Android' 카테고리의 다른 글
[안드로이드] apk 추출 (0) | 2011.09.18 |
---|---|
[안드로이드] 비행기 모드 On/Off 실시간 체크 처리 (0) | 2011.09.02 |
[안드로이드] 로우 메모리 콜백 메서드 (0) | 2011.06.17 |
[안드로이드]안드로이드 힙메모리 관리하기 (0) | 2011.06.13 |
[안드로이드] 애드몹 (0) | 2011.05.27 |
Comments