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()andgetHeight()メソッドは現在非推奨です。getSize()代わりに使用する必要があります。
getWidth()
getHeight()
getSize()