Searched refs:userAttributes (Results 1 - 5 of 5) sorted by relevance

/packages/apps/VideoEditor/src/com/android/videoeditor/service/
H A DMovieOverlay.java69 final Map<String, String> userAttributes = overlay.getUserAttributes();
70 mTitle = userAttributes.get(KEY_TITLE);
71 mSubtitle = userAttributes.get(KEY_SUBTITLE);
72 mType = Integer.parseInt(userAttributes.get(KEY_TYPE));
221 final Bundle userAttributes = new Bundle(4);
222 userAttributes.putInt(KEY_TYPE, mType);
223 userAttributes.putString(KEY_TITLE, mTitle);
224 userAttributes.putString(KEY_SUBTITLE, mSubtitle);
225 return userAttributes;
238 final Bundle userAttributes
248 updateUserAttributes(Bundle userAttributes) argument
274 getType(Bundle userAttributes) argument
283 getTitle(Bundle userAttributes) argument
292 getSubtitle(Bundle userAttributes) argument
[all...]
H A DApiService.java1065 * @param userAttributes The overlay user attributes
1070 String overlayId, Bundle userAttributes, long startTimeMs, long durationMs) {
1078 intent.putExtra(PARAM_ATTRIBUTES, userAttributes);
1151 * @param userAttributes The user attributes
1154 String mediaItemId, String overlayId, Bundle userAttributes) {
1160 intent.putExtra(PARAM_ATTRIBUTES, userAttributes);
2539 final Bundle userAttributes = intent.getBundleExtra(PARAM_ATTRIBUTES);
2541 final int overlayType = MovieOverlay.getType(userAttributes);
2542 final String title = MovieOverlay.getTitle(userAttributes);
2543 final String subTitle = MovieOverlay.getSubtitle(userAttributes);
1069 addOverlay(Context context, String projectPath, String mediaItemId, String overlayId, Bundle userAttributes, long startTimeMs, long durationMs) argument
1153 setOverlayUserAttributes(Context context, String projectPath, String mediaItemId, String overlayId, Bundle userAttributes) argument
[all...]
H A DApiServiceListener.java376 * @param userAttributes The user attributes
380 String mediaItemId, Bundle userAttributes, Exception exception) {}
379 onOverlayUserAttributesSet(String projectPath, String overlayId, String mediaItemId, Bundle userAttributes, Exception exception) argument
/packages/apps/VideoEditor/src/com/android/videoeditor/
H A DVideoEditorBaseActivity.java642 String mediaItemId, Bundle userAttributes, Exception exception) {
657 getOverlayLayout().updateOverlayAttributes(mediaItemId, overlayId, userAttributes);
641 onOverlayUserAttributesSet(String projectPath, String overlayId, String mediaItemId, Bundle userAttributes, Exception exception) argument
/packages/apps/VideoEditor/src/com/android/videoeditor/widgets/
H A DOverlayLinearLayout.java560 * @param userAttributes The overlay attributes
563 Bundle userAttributes) {
562 updateOverlayAttributes(String mediaItemId, String overlayId, Bundle userAttributes) argument

Completed in 270 milliseconds