Home | History | Annotate | Download | only in handlers

Lines Matching refs:remoteInput

26 import android.support.v4.app.RemoteInput;
119 * Extracts CharSequence created from the RemoteInput associated with the Notification.
122 Bundle remoteInput = RemoteInput.getResultsFromIntent(intent);
123 if (remoteInput != null) {
124 return remoteInput.getCharSequence(EXTRA_COMMENT);
140 // 3. Set up RemoteInput, so users can input (keyboard and voice) from notification
167 // 3. Set up a RemoteInput Action, so users can input (keyboard, drawing, voice) directly
170 RemoteInput remoteInput =
171 new RemoteInput.Builder(BigPictureSocialIntentService.EXTRA_COMMENT)
192 .addRemoteInput(remoteInput)