Home
last modified time | relevance | path

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

/frameworks/support/slices/view/src/main/java/androidx/slice/widget/
DActionRow.java177 View riv = RemoteInputView.inflate(context, this); in createRemoteInputView() local
178 riv.setVisibility(View.INVISIBLE); in createRemoteInputView()
179 addView(riv, new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT)); in createRemoteInputView()
180 riv.setBackgroundColor(color); in createRemoteInputView()
191 RemoteInputView riv = null; in handleRemoteInputClick() local
195 riv = findRemoteInputView(pv); in handleRemoteInputClick()
196 if (riv != null) { in handleRemoteInputClick()
202 if (riv == null) { in handleRemoteInputClick()
218 int w = riv.getWidth(); in handleRemoteInputClick()
219 int h = riv.getHeight(); in handleRemoteInputClick()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/
DRegionInterceptingFrameLayout.java70 RegionInterceptableView riv = (RegionInterceptableView) child;
71 if (!riv.shouldInterceptTouch()) {
74 Region unionRegion = riv.getInterceptRegion();
79 internalInsetsInfo.touchableRegion.op(riv.getInterceptRegion(), Op.UNION);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationRemoteInputManager.java185 RemoteInputView riv = null;
190 riv = findRemoteInputView(pv);
224 if (riv == null) {
225 riv = findRemoteInputView(row.getPrivateLayout().getExpandedChild());
226 if (riv == null) {
247 int w = riv.getWidth();
248 int h = riv.getHeight();
253 riv.setRevealParameters(cx, cy, r);
254 riv.setPendingIntent(pendingIntent);
255 riv.setRemoteInput(inputs, input);
[all …]
DNotificationContentView.java1305 RemoteInputView riv = RemoteInputView.inflate( in applyRemoteInput() local
1308 riv.setVisibility(View.INVISIBLE); in applyRemoteInput()
1309 actionContainer.addView(riv, new LayoutParams( in applyRemoteInput()
1313 existing = riv; in applyRemoteInput()
1672 RemoteInputView riv = getRemoteInputForView(getViewForVisibleType(mVisibleType)); in dispatchTouchEvent() local
1673 if (riv != null && riv.getVisibility() == VISIBLE) { in dispatchTouchEvent()
1674 int inputStart = mUnrestrictedContentHeight - riv.getHeight(); in dispatchTouchEvent()
1677 return riv.dispatchTouchEvent(ev); in dispatchTouchEvent()