Android examples for Camera:Camera Flash
Returns a list of available camera flash modes.
//package com.java2s; import java.lang.reflect.Method; import java.util.Collections; import java.util.List; import android.hardware.Camera; public class Main { public static List<String> getFlashModes(Camera camera) { Camera.Parameters params = camera.getParameters(); try {// www . j a v a 2 s . c o m Method flashModesMethod = params.getClass().getMethod( "getSupportedFlashModes"); List<String> result = (List<String>) flashModesMethod .invoke(params); if (result != null) return result; } catch (Exception ignored) { } return Collections.singletonList("off"); } }