WebView의 기본 User-Agent 구하기
String userAgent = new WebView(context).getSettings().getUserAgentString();
WebView의 user-agent 변경하기
webview.getSettings().setUserAgentString("변경된 스트링");
URLConnection의 기본 User-Agent 구하기
String userAgent = System.getProperty("http.agent");
URLConnection의 user-agent 변경하기
HttpURLConnection conn = ...;
conn.setRequestProperty("User-Agent", "변경된 스트링");
* 참고
http://stackoverflow.com/questions/3626071/retrieve-user-agent-programatically
'Android' 카테고리의 다른 글
Token 기반 자동 로그인 구현 예제 (0) | 2013.05.28 |
---|---|
[안드로이드] Sonar를 통한 소스 품질분석용 Ant 빌드스크립트 예제 (0) | 2013.05.27 |
[안드로이드] AOP를 이용한 에러처리 사례 (1) | 2013.05.15 |
[안드로이드] Thread.UncaughtExceptionHandler 사용팁 (1) | 2013.05.14 |
greenrobot EventBus를 써보니... (0) | 2013.04.26 |