// 取得螢幕解析度
DisplayMetrics dm = new DisplayMetrics();
this.getWindowManager().getDefaultDisplay().getMetrics(dm);
int vWidth = dm.widthPixels;
int vHeight = dm.heightPixels;
// 顯示資訊
TextView tv = ((TextView) findViewById(R.id.showText));
tv.setText("寬:" + vWidth + ", 高:" + vHeight);
沒有留言:
張貼留言