Home | History | Annotate | Download | only in service

Lines Matching refs:userAttributes

69         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 = new Bundle(4);
239 userAttributes.putInt(KEY_TYPE, type);
240 userAttributes.putString(KEY_TITLE, title);
241 userAttributes.putString(KEY_SUBTITLE, subtitle);
242 return userAttributes;
246 * @param userAttributes The user attributes
248 void updateUserAttributes(Bundle userAttributes) {
249 mType = userAttributes.getInt(KEY_TYPE);
250 mTitle = userAttributes.getString(KEY_TITLE);
251 mSubtitle = userAttributes.getString(KEY_SUBTITLE);
270 * @param userAttributes The user attributes
274 public static int getType(Bundle userAttributes) {
275 return userAttributes.getInt(KEY_TYPE);
279 * @param userAttributes The user attributes
283 public static String getTitle(Bundle userAttributes) {
284 return userAttributes.getString(KEY_TITLE);
288 * @param userAttributes The user attributes
292 public static String getSubtitle(Bundle userAttributes) {
293 return userAttributes.getString(KEY_SUBTITLE);