Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/
DRemoteInputViewTest.java82 private RemoteInputView mView;
109 private void setTestPendingIntent(RemoteInputView view) { in setTestPendingIntent()
125 RemoteInputView view = RemoteInputView.inflate(mContext, null, row.getEntry(), mController); in testSendRemoteInput_intentContainsResultsAndSource()
163 RemoteInputView view = RemoteInputView.inflate(mContext, null, row.getEntry(), mController); in getTargetInputMethodUser()
206 RemoteInputView view = RemoteInputView.inflate(mContext, null, row.getEntry(), mController); in testNoCrashWithoutVisibilityListener()
220 RemoteInputView view = RemoteInputView.inflate(mContext, null, row.getEntry(), mController); in testUiEventLogging_openAndSend()
235 RemoteInputView.NotificationRemoteInputEvent.NOTIFICATION_REMOTE_INPUT_OPEN.getId(), in testUiEventLogging_openAndSend()
238 RemoteInputView.NotificationRemoteInputEvent.NOTIFICATION_REMOTE_INPUT_SEND.getId(), in testUiEventLogging_openAndSend()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DNotificationContentView.java56 import com.android.systemui.statusbar.policy.RemoteInputView;
98 private RemoteInputView mExpandedRemoteInput;
99 private RemoteInputView mHeadsUpRemoteInput;
164 private RemoteInputView mCachedExpandedRemoteInput;
165 private RemoteInputView mCachedHeadsUpRemoteInput;
302 private int getExtraRemoteInputHeight(RemoteInputView remoteInput) { in getExtraRemoteInputHeight()
1223 private RemoteInputView applyRemoteInput(View view, NotificationEntry entry,
1225 RemoteInputView cachedView, NotificationViewWrapper wrapper) {
1229 RemoteInputView existing = view.findViewWithTag(RemoteInputView.VIEW_TAG);
1238 RemoteInputView riv = RemoteInputView.inflate(
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DRemoteInputView.java101 public class RemoteInputView extends LinearLayout implements View.OnClickListener { class
165 public RemoteInputView(Context context, AttributeSet attrs) { in RemoteInputView() method in RemoteInputView
441 public static RemoteInputView inflate(Context context, ViewGroup root, in inflate()
444 RemoteInputView v = (RemoteInputView) in inflate()
676 public void stealFocusFrom(RemoteInputView other) { in stealFocusFrom()
885 private RemoteInputView mRemoteInputView;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationRemoteInputManager.java66 import com.android.systemui.statusbar.policy.RemoteInputView;
414 RemoteInputView riv = null; in activateRemoteInput()
543 private RemoteInputView findRemoteInputView(View v) { in findRemoteInputView()
547 return (RemoteInputView) v.findViewWithTag(RemoteInputView.VIEW_TAG); in findRemoteInputView()
DRemoteInputController.java31 import com.android.systemui.statusbar.policy.RemoteInputView;