일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- target29
- Bluetooth 스캔
- svn체크아웃
- 로그캣 색상지정
- Opacity Hex
- 디바이스ID
- 바텀네비게이션
- Android Bluetooth
- retrieveExplicitStyle
- aab파일apk변환
- Android OS 10
- lottieAnimation
- 안드로이드 디버깅툴
- 고유식별자
- 로그캣 색상변경
- 안드로이드apk변환
- 안드로이드aab변환
- 투명도 hex값
- 안드로이드 로그캣
- Android10
- Android
- apk변환
- bottomNavigation animation
- BottomNavigation
- 안드로이드
- 로띠애니메이션
- 앱강종
- 앱강종현상
- 바텀네비
- targetSDK29
- Today
- Total
공부하는 다락방
*** Stack Overflow 참고 urlhttp://stackoverflow.com/questions/36747573/parsing-xml-in-android-and-put-into-listviewhttp://stackoverflow.com/questions/14706751/parse-xml-using-dom-in-android Node Value를 가져오고 싶으면 아래와 같이 가져오면 된다.XMLParser parser = new XMLParser(); Document doc = parser.getDomElement(xml); // getting DOM element NodeList n1 = doc.getElementsByTagName("company"); // looping through all..
1. 설정화면에서 [Editor] -> [Colors&Fonts] -> [Android Logcat] 으로 이동합니다. 2. 각 로그레벨별로 지정하고 싶은 색상을 지정합니다. ★ 로그레벨별 추천하는 색상Debug : 6897BB Info : 6A8759 Warn : BBB529 Error : FF6B68 Assert : 9876AA
webview.addJavascriptInterface(new MyJavaScriptObject(), "JSObject" );안드로이드에서는 addJavascriptInterface를 이용하여 더욱 편하게 데이터를 주고 받을 수 있다.addJavascriptInterface 클래스 MyJavaScriptObject()를 만든다. 만들 때 주의할 점은 안드로이드 4.3.X 젤리빈 이상부터 "@JavascriptInterface" annotation을 붙이지 않을 경우해당 메소드는 동작하지 않기 때문에 반드시 붙여줘야한다. 아래는 예제소스private class MyJavaScriptObject{ @JavascriptInterface public void loadComplete(){ } }