Home
last modified time | relevance | path

Searched refs:retrieveConf (Results 1 – 1 of 1) sorted by relevance

/development/samples/ApiDemos/src/com/example/android/apis/os/
DMmsMessagingDemo.java288 final RetrieveConf retrieveConf = (RetrieveConf) pdu; in handleReceivedResult() local
289 mRecipientsInput.setText(getRecipients(context, retrieveConf)); in handleReceivedResult()
290 mSubjectInput.setText(getSubject(retrieveConf)); in handleReceivedResult()
291 mTextInput.setText(getMessageText(retrieveConf)); in handleReceivedResult()
407 private static String getRecipients(Context context, RetrieveConf retrieveConf) { in getRecipients() argument
410 if (retrieveConf.getFrom() != null) { in getRecipients()
411 sb.append(retrieveConf.getFrom().getString()); in getRecipients()
413 if (retrieveConf.getTo() != null) { in getRecipients()
414 for (EncodedStringValue to : retrieveConf.getTo()) { in getRecipients()
421 if (retrieveConf.getCc() != null) { in getRecipients()
[all …]