Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- java
- jsp
- Objective C
- permgen space
- Memory
- JavaScript
- encoding
- spring
- MySQL
- 티스토리 초대장
- 톰켓
- Eclipse
- 티스토리 초대
- iphone
- ios
- ipad
- jQuery
- Database
- Tomcat
- C#
- 인코딩
- 이클립스
- 메모리
- XML
- udp
- UIWebView
- WebView
- 한글
- Android
- HTML
Archives
- Today
- Total
suroMind
[Android] 안드로이드 가로 세로 크기 본문
안드로이드 가로세로 크기 구하기
Display defaultDisplay = ((WindowManager) getSystemService(WINDOW_SERVICE)).getDefaultDisplay();
int width = defaultDisplay.getWidth(); // 가로
int height = defaultDisplay.getHeight(); // 세로
Display defaultDisplay = ((WindowManager) getSystemService(WINDOW_SERVICE)).getDefaultDisplay();
int width = defaultDisplay.getWidth(); // 가로
int height = defaultDisplay.getHeight(); // 세로
Log.e("suromind",width);
Log.e("suromind",height);
Log.e("suromind",height);
'IT분야 > Android' 카테고리의 다른 글
[Android] Http 요청할때 스크립트가 리턴되어 올때 (2) | 2011.06.29 |
---|---|
[Android] WebView와 EditText 혼용해서 사용할 때 키패드 문제점 (0) | 2011.01.24 |
[Android] WebView 사용 시 Javascript Alert, Confirm 출력 (0) | 2011.01.23 |
[Android] WebView를 사용할때 HttpClient를 이용한 Session 유지 (0) | 2011.01.23 |
Comments