본문 바로가기
PhoneGap

android 무선 네트워크 세팅 창 열기 [programatically]

by NariNalDa 2013. 3. 18.

 final Intent intent = new Intent(Intent.ACTION_MAIN, null);

       intent.addCategory(Intent.CATEGORY_LAUNCHER);

       final ComponentName cn = new ComponentName("com.android.settings", "com.android.settings.wifi.WifiSettings");

       intent.setComponent(cn);

       intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);

       this.cordova.getActivity().startActivity(intent);

'PhoneGap' 카테고리의 다른 글

[android] 코드로 특정 와이파이에 붙기  (0) 2013.04.15
[android] javascript plugin JSON error  (0) 2013.02.26