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.
CamcorderProfiles(/ LOW)を介してAndroidのビデオカメラの録画品質を設定したいので、それにCamcorderProfile.QUALITY_HIGH応じてカメラのプレビューサイズ(およびレイアウト)も設定する必要があります。指定した記録プロファイルの実際の幅/高さを読み取るにはどうすればよいですか?
CamcorderProfile.QUALITY_HIGH
CamcorderProfileを取得したら:
CamcorderProfile cm = CamcorderProfile.get(CamcorderProfile.QUALITY_1080P);
あなたはvideoFrameWidth/Heightを得ることができます:
int width = cm.videoFrameWidth int height = cm.videoFrameHeight
今、ビデオカメラの残りの部分しか機能させることができなかったら... :(