Error:Execution failed for task ':app:compileRetrolambdaDebug'. Error:Execution failed for task ':app:compileRetrolambdaDebug'.> Cannot call Task.setEnabled(boolean) on task ':app:compileRetrolambdaDebug' after task has started execution. 발생시 Rebuild 실행. 안드로이드 2016.03.08
package org.apache.http does not exist SDK23 에서는 org.apache.http 를 지원 안하기 때문에 Gradle dependency 에 "org.apache.httpcomponents:httpcore:4.3.2" 포함 시키면 해결됨. 안드로이드 2016.02.16
자바(JAVA) 형 변환(String과 int) 자바(JAVA) 형 변환(String과 int) String to int String from = "123";int to = Integer.parseInt(from); int to String int from = 123;String to = Integer.toString(from); 자바 2016.02.15
Xml Parser XmlPullParserhttp://developer.android.com/intl/ko/reference/org/xmlpull/v1/XmlPullParser.html 안드로이드 2016.02.13