반응형

혼자의 세상 *^^* 448

[안드로이드] 코드상에 테더링 검사(체크 유무)

public static boolean isTether(Context context){boolean isWifiAPenalbed = false; WifiManager wm = (WifiManager)context.getSystemService(Context.WIFI_SERVICE);Method[] wmMethods = wm.getClass().getDeclaredMethods(); for(Method method : wmMethods){if(method.getName().equals("isWifiApEnabled")){try{isWifiAPenabled = (Boolean)method.invoke(wm);}catch(Exception e){ ; }}}return isWifiAPenabled;}

[안드로이드] Bold, Italic, Underline - HtmlFomat 이용

TextView에서 간단하게 Bold, Italic, Underline등의 스타일을 적용해야할 경우가 있습니다. 문자열에 Bold , Underline , Italic 등의 태그를 넣어서 사용하는 간단한 방법이 있는데요. 이것을 코드에서 적용하는 법을 알아보겠습니다. String Value로 다음과 같이 저장하신후에 TextView에 android:text에 @string/sitename으로 적용하시면 스타일이 바로 적용이 됩니다. 1.MobilePlace 그런데 가끔 Code상에서 String을 동적으로 생성해야할 경우가 있습니다. 이 경우는 아래와 같이 Html.fromHtml함수를 이용하면 됩니다. 1.String sitename = "MobilePlace";2.TextView t = (TextVi..

[안드로이드] 다른 어플 액티비티 띄우기

ComponentName compName = new ComponentName("com.smaple.example","com.smaple.example.exam");Intent actIntent = new Intent(Intent.ACTION_MAIN);actIntent.setComponent(compName);try {actIntent.putExtra("MBR_NUM", HOme.Data);} catch (RemoteException e) {e.printStackTrace();}actIntent.putExtra("MEMU_NUMBER", "INTENT_LAUNCHER");actIntent.putExtra("SEARCH_URL", urlPath + mTopicLinkUrl);getContext().star..

이클립스 단축키

1) 코딩을 할 때 라인 번호가 있어야 편하다. 워크벤치-에디터-텍스트 에디터-쇼라인넘버즈 어플라이 하면 된다. 2) 코드 스타일 바꾸기 Windows > Prefrences > Java > Code Style > Formatter 하나를 만들어서 그거 이용하도록 에디터에서 적용방법 : Ctrl + Shift + F 또는 Source > Format 특정부분만 적용하려면 블록 후 Ctrl + Shift + F 3) 퍼스펙티스 설정 저장 WIndow > Save Perspective As (4) 코드 어시스트 Ctrl + Space for, while 자동완성 sysout 자동완성 템플릿 설정은 Preferences Java > Editor > Templates Actio 정도만 치고 Ctrl+Space를..

반응형