Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6f5b5ee3 authored by Pin Ting's avatar Pin Ting
Browse files

Fix document.

Change-Id: I661b259c8438f9290d57fae29a828cf4495ce335
parent e606cb46
Loading
Loading
Loading
Loading
+3 −3
Original line number Original line Diff line number Diff line
@@ -442,7 +442,7 @@ use or does not exist will cause your application to be shut down by the system.
the first, back-facing camera on a device with more than one camera.</p>
the first, back-facing camera on a device with more than one camera.</p>


<h3 id="check-camera-features">Checking camera features</h3>
<h3 id="check-camera-features">Checking camera features</h3>
<p>Once you obtain access to a camera, you can get further information about its capabilties using
<p>Once you obtain access to a camera, you can get further information about its capabilities using
the {@link android.hardware.Camera#getParameters() Camera.getParameters()} method and checking the
the {@link android.hardware.Camera#getParameters() Camera.getParameters()} method and checking the
returned {@link android.hardware.Camera.Parameters} object for supported capabilities. When using
returned {@link android.hardware.Camera.Parameters} object for supported capabilities. When using
API Level 9 or higher, use the {@link android.hardware.Camera#getCameraInfo(int,
API Level 9 or higher, use the {@link android.hardware.Camera#getCameraInfo(int,
+3 −3
Original line number Original line Diff line number Diff line
@@ -35,7 +35,7 @@ previous.link=videobasics.html
the framework APIs.</p>
the framework APIs.</p>


<p>Directly controlling a device camera requires a lot more code than requesting pictures or videos
<p>Directly controlling a device camera requires a lot more code than requesting pictures or videos
from existing camera applications. However, if you want to build a specialized camera application or
from existing camera applications. However, if you want to build a specialized camera application
or something fully integrated in your app UI, this lesson shows you how.</p>
or something fully integrated in your app UI, this lesson shows you how.</p>




@@ -95,7 +95,7 @@ camera sensor is picking up.</p>
<p>To get started with displaying a preview, you need preview class. The
<p>To get started with displaying a preview, you need preview class. The
preview requires an implementation of the {@code
preview requires an implementation of the {@code
android.view.SurfaceHolder.Callback} interface, which is used to pass image
android.view.SurfaceHolder.Callback} interface, which is used to pass image
data from the camera hardware the application.</p>
data from the camera hardware to the application.</p>


<pre>
<pre>
class Preview extends ViewGroup implements SurfaceHolder.Callback {
class Preview extends ViewGroup implements SurfaceHolder.Callback {
@@ -214,7 +214,7 @@ takePicture()}.</p>


<h2 id="TaskRestartPreview">Restart the Preview</h2>
<h2 id="TaskRestartPreview">Restart the Preview</h2>


<p>After a picture is taken, you must to restart the preview before the user
<p>After a picture is taken, you must restart the preview before the user
can take another picture. In this example, the restart is done by overloading
can take another picture. In this example, the restart is done by overloading
the shutter button.</p>
the shutter button.</p>


+1 −1
Original line number Original line Diff line number Diff line
@@ -107,7 +107,7 @@ public static boolean isIntentAvailable(Context context, String action) {
<p>The Android Camera application returns the video in the {@link android.content.Intent} delivered
<p>The Android Camera application returns the video in the {@link android.content.Intent} delivered
to {@link android.app.Activity#onActivityResult onActivityResult()} as a {@link
to {@link android.app.Activity#onActivityResult onActivityResult()} as a {@link
android.net.Uri} pointing to the video location in storage. The following code
android.net.Uri} pointing to the video location in storage. The following code
retrieves this image and displays it in a {@link android.widget.VideoView}.</p>
retrieves this video and displays it in a {@link android.widget.VideoView}.</p>


<pre>
<pre>
private void handleCameraVideo(Intent intent) {
private void handleCameraVideo(Intent intent) {