OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SurfaceView
(Results
76 - 100
of
186
) sorted by null
1
2
3
4
5
6
7
8
/frameworks/av/packages/MediaComponents/src/com/android/widget/
VideoSurfaceView.java
26
import android.view.
SurfaceView
;
31
class VideoSurfaceView extends
SurfaceView
implements VideoViewInterface, SurfaceHolder.Callback {
195
return "ViewType:
SurfaceView
/ Visibility: " + getVisibility()
/frameworks/base/graphics/java/android/view/
PixelCopy.java
90
* Requests for the display content of a {@link
SurfaceView
} to be copied
96
* in the
SurfaceView
's Surface will be used as the source of the copy.
105
public static void request(@NonNull
SurfaceView
source, @NonNull Bitmap dest,
111
* Requests for the display content of a {@link
SurfaceView
} to be copied
117
* in the
SurfaceView
's Surface will be used as the source of the copy.
129
public static void request(@NonNull
SurfaceView
source, @Nullable Rect srcRect,
/frameworks/base/tests/SurfaceComposition/src/android/surfacecomposition/
CustomSurfaceView.java
25
import android.view.
SurfaceView
;
30
* use
SurfaceView
which works with Surface. This gives a very small overhead
35
public class CustomSurfaceView extends
SurfaceView
implements SurfaceHolder.Callback {
/frameworks/support/media-widget/src/main/java/androidx/media/widget/impl/
VideoSurfaceView.java
26
import android.view.
SurfaceView
;
34
class VideoSurfaceView extends
SurfaceView
/frameworks/support/media-widget/src/main/java/androidx/media/widget/impl_with_mp1/
VideoSurfaceViewWithMp1.java
26
import android.view.
SurfaceView
;
33
class VideoSurfaceViewWithMp1 extends
SurfaceView
/packages/services/Car/tests/DirectRenderingClusterSample/src/android/car/cluster/sample/
NavigationFragment.java
35
import android.view.
SurfaceView
;
44
private
SurfaceView
mSurfaceView;
/frameworks/rs/tests/java_api/RsTest_11/src/com/android/rs/test/
RSTestView.java
38
import android.view.
SurfaceView
;
/frameworks/rs/tests/java_api/RsTest_14/src/com/android/rs/test/
RSTestView.java
38
import android.view.
SurfaceView
;
/frameworks/rs/tests/java_api/RsTest_16/src/com/android/rs/test/
RSTestView.java
38
import android.view.
SurfaceView
;
/frameworks/rs/tests/java_api/ScriptGroupTest/src/com/android/rs/sgtest/
TestBase.java
29
import android.view.
SurfaceView
;
/cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/fov/
DetermineFovActivity.java
32
import android.view.
SurfaceView
;
55
private
SurfaceView
mSurfaceView;
80
mSurfaceView = (
SurfaceView
) findViewById(R.id.camera_fov_photo_surface);
/cts/apps/CtsVerifier/src/com/android/cts/verifier/streamquality/
PlayVideoActivity.java
36
import android.view.
SurfaceView
;
66
private
SurfaceView
mSurfaceView;
81
mSurfaceView = (
SurfaceView
) findViewById(R.id.surface);
/developers/build/prebuilts/gradle/ScreenCapture/Application/src/main/java/com/example/android/screencapture/
ScreenCaptureFragment.java
32
import android.view.
SurfaceView
;
62
private
SurfaceView
mSurfaceView;
81
mSurfaceView = (
SurfaceView
) view.findViewById(R.id.surface);
/developers/samples/android/media/ScreenCapture/Application/src/main/java/com/example/android/screencapture/
ScreenCaptureFragment.java
32
import android.view.
SurfaceView
;
62
private
SurfaceView
mSurfaceView;
81
mSurfaceView = (
SurfaceView
) view.findViewById(R.id.surface);
/development/samples/ApiDemos/src/com/example/android/apis/graphics/
CameraPreview.java
31
import android.view.
SurfaceView
;
63
// Create a RelativeLayout container that will hold a
SurfaceView
,
157
* A simple wrapper around a Camera and a
SurfaceView
that renders a centered preview of the Camera
158
* to the surface. We need to center the
SurfaceView
because not all devices have cameras that
164
SurfaceView
mSurfaceView;
173
mSurfaceView = new
SurfaceView
(context);
208
// wrapper to a
SurfaceView
that centers the camera preview instead
234
// Center the child
SurfaceView
within the parent.
/development/samples/ApiDemos/src/com/example/android/apis/media/projection/
MediaProjectionDemo.java
34
import android.view.
SurfaceView
;
66
private
SurfaceView
mSurfaceView;
78
mSurfaceView = (
SurfaceView
) findViewById(R.id.surface);
/development/samples/HoneycombGallery/src/com/example/android/hcgallery/
CameraFragment.java
34
import android.view.
SurfaceView
;
56
// Create a container that will hold a
SurfaceView
for camera previews
165
* A simple wrapper around a Camera and a
SurfaceView
that renders a centered
166
* preview of the Camera to the surface. We need to center the
SurfaceView
173
SurfaceView
mSurfaceView;
183
mSurfaceView = new
SurfaceView
(context);
214
// wrapper to a
SurfaceView
that centers the camera preview instead
250
// Center the child
SurfaceView
within the parent.
/development/samples/browseable/ScreenCapture/src/com.example.android.screencapture/
ScreenCaptureFragment.java
32
import android.view.
SurfaceView
;
62
private
SurfaceView
mSurfaceView;
81
mSurfaceView = (
SurfaceView
) view.findViewById(R.id.surface);
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/
CameraFacade.java
30
import android.view.
SurfaceView
;
131
final
SurfaceView
view = new
SurfaceView
(getActivity());
/frameworks/base/core/java/android/widget/
Magnifier.java
47
import android.view.
SurfaceView
;
256
* window unless the magnified view is a
SurfaceView
, in which case its backing surface
275
// Get the surface backing the magnified view, if it is a
SurfaceView
.
277
if (mView instanceof
SurfaceView
) {
278
final SurfaceHolder surfaceHolder = ((
SurfaceView
) mView).getHolder();
290
mContentCopySurface = mView instanceof
SurfaceView
302
if (mView instanceof
SurfaceView
) {
303
// No offset required if the backing Surface matches the size of the
SurfaceView
.
322
if (mView instanceof
SurfaceView
) {
323
// If we copy content from a
SurfaceView
, clamp coordinates relative to it
[
all
...]
/external/skia/platform_tools/android/apps/viewer/src/main/java/org/skia/viewer/
StateAdapter.java
6
import android.view.
SurfaceView
;
227
// Due to the current Android limitation, we're required to recreate the
SurfaceView
for
229
// (Although we can switch between GPU backend without recreating the
SurfaceView
.)
235
SurfaceView
surfaceView
= new
SurfaceView
(mViewerActivity);
236
surfaceView
.setId(R.id.
surfaceView
);
237
surfaceView
.getHolder().addCallback(mViewerActivity);
238
surfaceView
.setOnTouchListener(mViewerActivity)
[
all
...]
/external/skqp/platform_tools/android/apps/viewer/src/main/java/org/skia/viewer/
StateAdapter.java
6
import android.view.
SurfaceView
;
227
// Due to the current Android limitation, we're required to recreate the
SurfaceView
for
229
// (Although we can switch between GPU backend without recreating the
SurfaceView
.)
235
SurfaceView
surfaceView
= new
SurfaceView
(mViewerActivity);
236
surfaceView
.setId(R.id.
surfaceView
);
237
surfaceView
.getHolder().addCallback(mViewerActivity);
238
surfaceView
.setOnTouchListener(mViewerActivity)
[
all
...]
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/media/
MediaRecorderFacade.java
26
import android.view.
SurfaceView
;
236
final
SurfaceView
view = new
SurfaceView
(getActivity());
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/webcam/
WebCamFacade.java
43
import android.view.
SurfaceView
;
305
final
SurfaceView
view = new
SurfaceView
(getActivity());
/frameworks/base/core/java/android/app/
ActivityView.java
37
import android.view.
SurfaceView
;
60
private final
SurfaceView
mSurfaceView;
88
mSurfaceView = new
SurfaceView
(context);
Completed in 1504 milliseconds
1
2
3
4
5
6
7
8