Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何确定一个组件的大小,而不是计算所有组件的大小,包括屏幕和组件的父组件的大小?
我使用 android 1.6 开发了一些应用程序,但它们都是基于目标手机的屏幕尺寸。由于 Android 与 Symbian OS 不同,我相信我可以创建一个应用程序,该应用程序可以安装到任何运行 Android 操作系统的手机上,只要操作系统版本受到尊重。
说,我正在为 HTC Desire HD 开发。知道 Desire 的屏幕尺寸为 4.3 英寸,我怎么知道窗口屏幕尺寸(以像素为单位)?
谢谢。
您可以使用此检索设备屏幕尺寸
getResources().getDisplayMetrics(); getResources().getDisplayMetrics().widthPixels; getResources().getDisplayMetrics().heightPixels;