Home
last modified time | relevance | path

Searched defs:reply (Results 1 – 3 of 3) sorted by relevance

/developers/samples/android/notification/Bubbles/app/src/main/java/com/example/android/bubbles/data/
DContact.kt31 override fun reply(text: String) = buildReply().apply { this.text = "Meow" } in <lambda>() method
34 override fun reply(text: String) = buildReply().apply { this.text = "Woof woof!!" } in <lambda>() method
37 override fun reply(text: String) = buildReply().apply { this.text = text } in <lambda>() method
40 override fun reply(text: String) = buildReply().apply { in <lambda>() method
53 abstract fun reply(text: String): Message.Builder in reply() method in com.example.android.bubbles.data.Contact
/developers/samples/android/notification/MessagingService/Application/src/main/java/com/example/android/messagingservice/
DMessageReplyReceiver.java43 CharSequence reply = getMessageText(intent); in onReceive() local
/developers/samples/android/deprecated/wearable/wear/WearMessagingApp/Wearable/src/main/java/com/example/android/wearable/wear/messaging/chat/
DReplyToMessageIntentService.java72 private void handleReply(CharSequence reply, Chat chat) { in handleReply()