-
最近の投稿
最近のコメント
アーカイブ
- 2017年12月
- 2016年7月
- 2016年5月
- 2016年1月
- 2015年7月
- 2015年5月
- 2015年4月
- 2015年2月
- 2014年12月
- 2014年11月
- 2014年10月
- 2014年9月
- 2014年8月
- 2014年7月
- 2014年6月
- 2014年5月
- 2014年4月
- 2014年3月
- 2014年2月
- 2014年1月
- 2013年12月
- 2013年10月
- 2013年9月
- 2013年8月
- 2013年7月
- 2013年6月
- 2013年5月
- 2013年4月
- 2013年3月
- 2013年2月
- 2013年1月
- 2012年12月
- 2012年11月
- 2012年10月
- 2012年9月
- 2012年8月
- 2012年7月
- 2012年6月
- 2012年5月
- 2012年4月
- 2012年3月
- 2012年2月
- 2012年1月
- 2011年12月
- 2011年11月
- 2011年10月
- 2011年9月
- 2011年8月
- 2011年7月
- 2011年6月
- 2011年5月
- 2011年4月
カテゴリー
メタ情報
Category Archives: 未分類
Activity 종료방법
1. Activity#finish() activity를 라이프싸이클에 의 … Continue reading
Posted in 未分類
コメントは受け付けていません。
MimeType 알아내기
1 |
String mimeType = MimeTypeMap.getFileExtensionFromUrl(url); |
Posted in 未分類
コメントは受け付けていません。
링크를 외부 브라우져로 연결
1 2 |
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.google.com"));
startActivity(browserIntent); |
Posted in 未分類
コメントは受け付けていません。
단말기 해상도
1 2 3 |
Display display = ((WindowManager) getSystemService(Context.WINDOW_SERVICE)).getDefaultDisplay();
DisplayMetrics metrics = new DisplayMetrics();
display.getMetrics(metrics); |
metrics에서 여러 값들을 … Continue reading
Posted in 未分類
コメントは受け付けていません。
Service와 사운드 재생
몇개의 사이트에서는 BGM을 Service 로 하라고 하는데 이건 아니다 … Continue reading
Posted in 未分類
コメントは受け付けていません。
HttpClient 에서 Proxy
1 2 3 4 5 6 |
HttpClient httpclient = new HttpClient();
httpclient.getHostConfiguration().setProxy("Proxy호스트", "Proxy포트");
httpclient.getState().setProxyCredentials(
new AuthScope("Proxy호스트", "Proxy포트"),
new UsernamePasswordCredentials("유져ID", "비밀번호")
); |
Posted in 未分類
コメントは受け付けていません。
CentOS 6 에서 mysql 5.5 를 인스톨하기
먼저 2개의 rpm 패키지가 필요하다. * epel-release-6-7 … Continue reading
seam에서 Exception을 던지면 자동 Rollback
먼저 아무 Exception 이나 Rollback 이 되지는 않는다는 점 … Continue reading