Android screen size is different for different phone models. There are some screen resolutions already defined in Android. They are:
Now let’s see how to get the screen size, @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); int ht; int wt; DisplayMetrics displaymetrics = new DisplayMetrics(); getWindowManager().getDefaultDisplay().getMetrics(displaymetrics); ht = displaymetrics.heightPixels; wt = displaymetrics.widthPixels; }
Here, ht will return the height & wt will return the width.
|
'Android > Tip&Tech' 카테고리의 다른 글
Android XML 과 JSON 등의 개발팁 및 예제 (0) | 2011.03.29 |
---|---|
[개발 Tip] TextView내 글자가 흘러가는 효과(marquee) 주기 | 프로그래밍 팁 (1) | 2011.03.28 |
TextView에 링크 넣어보기 (0) | 2011.03.25 |
Android task,stack,flag 자세한 설명 (0) | 2011.03.24 |
ActvityGroup에서 Spinner 사용시 오류 발행할 때 해결방안 (0) | 2011.03.24 |