Hi ,I tried to get the supported preview ranges from my phone with:
with this :
I got this => [I@40a908f0 as output .
If anyone could help me understand the output it would help me a lot, thanks!
B4X:
Log("Frames/sec modes________")
Dim FpsRange As List = camEx.GetSupportedPreviewFpsRange
If FpsRange.IsInitialized = False Then
Log(TAB & "Not supported.")
Else
Dim fps As String
For i=0 To FpsRange.Size-1
fps=FpsRange.Get(i) : Log(TAB & fps)
Next
End If
with this :
B4X:
Public Sub GetSupportedPreviewFpsRange As List
r.Target = parameters
Return r.RunMethod("getSupportedPreviewFpsRange")
End Sub
I got this => [I@40a908f0 as output .
If anyone could help me understand the output it would help me a lot, thanks!
Last edited: