Java tutorial
//package com.java2s; //License from project: Apache License import android.annotation.TargetApi; import android.util.Size; public class Main { @TargetApi(21) public static Size chooseVideoSize(Size[] choices) { for (Size size : choices) { if (size.getWidth() == size.getHeight() * 4 / 3 && size.getWidth() <= 720) { return size; } } return choices[choices.length - 1]; } }