Searched defs:overlayId (Results 1 - 8 of 8) sorted by relevance

/packages/apps/Gallery/src/com/android/camera/
H A DGalleryPickerItem.java95 public void setOverlay(int overlayId) { argument
96 if (overlayId >= 0) {
97 mOverlay = getResources().getDrawable(overlayId);
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
H A DFilterRepresentation.java191 public void setOverlayId(int overlayId) { argument
192 mOverlayId = overlayId;
/packages/apps/VideoEditor/src/com/android/videoeditor/service/
H A DMovieMediaItem.java416 * @param overlayId The overlay id
418 void removeOverlay(String overlayId) { argument
420 if (!mOverlay.getId().equals(overlayId)) {
422 + overlayId);
H A DApiServiceListener.java339 * @param overlayId The id of the overlay
343 public void onOverlayRemoved(String projectPath, String overlayId, argument
350 * @param overlayId The id of the overlay
355 public void onOverlayStartTimeSet(String projectPath, String overlayId, argument
362 * @param overlayId The id of the overlay
367 public void onOverlayDurationSet(String projectPath, String overlayId, argument
374 * @param overlayId The id of the overlay
379 public void onOverlayUserAttributesSet(String projectPath, String overlayId, argument
H A DVideoEditorProject.java843 * @param overlayId The overlay id
845 void removeOverlay(String mediaItemId, String overlayId) { argument
847 mediaItem.removeOverlay(overlayId);
855 * @param overlayId The overlay id
858 public MovieOverlay getOverlay(String mediaItemId, String overlayId) { argument
H A DApiService.java1070 String overlayId, Bundle userAttributes, long startTimeMs, long durationMs) {
1075 intent.putExtra(PARAM_STORYBOARD_ITEM_ID, overlayId);
1089 * @param overlayId The id of the overlay to remove
1092 String overlayId) {
1097 intent.putExtra(PARAM_STORYBOARD_ITEM_ID, overlayId);
1108 * @param overlayId The id of the overlay
1112 String overlayId, long startTimeMs) {
1117 intent.putExtra(PARAM_STORYBOARD_ITEM_ID, overlayId);
1129 * @param overlayId The id of the overlay
1133 String overlayId, lon
1069 addOverlay(Context context, String projectPath, String mediaItemId, String overlayId, Bundle userAttributes, long startTimeMs, long durationMs) argument
1091 removeOverlay(Context context, String projectPath, String mediaItemId, String overlayId) argument
1111 setOverlayStartTime(Context context, String projectPath, String mediaItemId, String overlayId, long startTimeMs) argument
1132 setOverlayDuration(Context context, String projectPath, String mediaItemId, String overlayId, long durationMs) argument
1153 setOverlayUserAttributes(Context context, String projectPath, String mediaItemId, String overlayId, Bundle userAttributes) argument
[all...]
/packages/apps/VideoEditor/src/com/android/videoeditor/widgets/
H A DOverlayLinearLayout.java535 * @param overlayId The overlay id
537 public void removeOverlay(String mediaItemId, String overlayId) { argument
559 * @param overlayId The overlay id
562 public void updateOverlayAttributes(String mediaItemId, String overlayId, argument
572 Log.e(TAG, "updateOverlayAttributes: Overlay not found: " + overlayId);
/packages/apps/VideoEditor/src/com/android/videoeditor/
H A DVideoEditorBaseActivity.java585 public void onOverlayRemoved(String projectPath, String overlayId, argument
600 getOverlayLayout().removeOverlay(mediaItemId, overlayId);
605 public void onOverlayStartTimeSet(String projectPath, String overlayId, argument
623 public void onOverlayDurationSet(String projectPath, String overlayId, argument
641 public void onOverlayUserAttributesSet(String projectPath, String overlayId, argument
657 getOverlayLayout().updateOverlayAttributes(mediaItemId, overlayId, userAttributes);

Completed in 149 milliseconds