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 设备是否可以播放 1280 x 720 像素的 MP4 H.264 视频,以便应用程序可以优雅地退回到较低分辨率的版本(如 360 x 480 像素)或禁用视频功能?(视频嵌入在应用程序中,因为它们不是很长。)
您可以使用以下代码段获取设备的物理分辨率:
WindowManager w = getWindowManager(); Display d = w.getDefaultDisplay(); int width = d.getWidth(); int height = d.getHeight();
编辑:
刚刚检查了API。getWidth()和getHeight()方法现在已弃用。您将不得不getSize()改用。
getWidth()
getHeight()
getSize()