1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
|
/*
* Copyright (C) 2020 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package android.view;
import static android.view.InsetsController.DEBUG;
import static android.view.WindowManager.LayoutParams.PRIVATE_FLAG_APPEARANCE_CONTROLLED;
import static android.view.WindowManager.LayoutParams.PRIVATE_FLAG_BEHAVIOR_CONTROLLED;
import android.annotation.NonNull;
import android.content.res.CompatibilityInfo;
import android.os.Handler;
import android.os.IBinder;
import android.os.RemoteException;
import android.util.Log;
import android.view.inputmethod.InputMethodManager;
import java.util.List;
/**
* Implements {@link InsetsController.Host} for {@link ViewRootImpl}s.
* @hide
*/
public class ViewRootInsetsControllerHost implements InsetsController.Host {
private final String TAG = "VRInsetsControllerHost";
private final ViewRootImpl mViewRoot;
private SyncRtSurfaceTransactionApplier mApplier;
public ViewRootInsetsControllerHost(ViewRootImpl viewRoot) {
mViewRoot = viewRoot;
}
@Override
public Handler getHandler() {
return mViewRoot.mHandler;
}
@Override
public void notifyInsetsChanged() {
mViewRoot.notifyInsetsChanged();
}
@Override
public void addOnPreDrawRunnable(Runnable r) {
if (mViewRoot.mView == null) {
return;
}
mViewRoot.mView.getViewTreeObserver().addOnPreDrawListener(
new ViewTreeObserver.OnPreDrawListener() {
@Override
public boolean onPreDraw() {
mViewRoot.mView.getViewTreeObserver().removeOnPreDrawListener(this);
r.run();
return true;
}
});
mViewRoot.mView.invalidate();
}
@Override
public void dispatchWindowInsetsAnimationPrepare(@NonNull WindowInsetsAnimation animation) {
if (mViewRoot.mView == null) {
return;
}
mViewRoot.mView.dispatchWindowInsetsAnimationPrepare(animation);
}
@Override
public WindowInsetsAnimation.Bounds dispatchWindowInsetsAnimationStart(
@NonNull WindowInsetsAnimation animation,
@NonNull WindowInsetsAnimation.Bounds bounds) {
if (mViewRoot.mView == null) {
return null;
}
if (DEBUG) Log.d(TAG, "windowInsetsAnimation started");
return mViewRoot.mView.dispatchWindowInsetsAnimationStart(animation, bounds);
}
@Override
public WindowInsets dispatchWindowInsetsAnimationProgress(@NonNull WindowInsets insets,
@NonNull List<WindowInsetsAnimation> runningAnimations) {
if (mViewRoot.mView == null) {
// The view has already detached from window.
return null;
}
if (DEBUG) {
for (WindowInsetsAnimation anim : runningAnimations) {
Log.d(TAG, "windowInsetsAnimation progress: "
+ anim.getInterpolatedFraction());
}
}
return mViewRoot.mView.dispatchWindowInsetsAnimationProgress(insets, runningAnimations);
}
@Override
public void dispatchWindowInsetsAnimationEnd(@NonNull WindowInsetsAnimation animation) {
if (DEBUG) Log.d(TAG, "windowInsetsAnimation ended");
if (mViewRoot.mView == null) {
// The view has already detached from window.
return;
}
mViewRoot.mView.dispatchWindowInsetsAnimationEnd(animation);
}
@Override
public void applySurfaceParams(SyncRtSurfaceTransactionApplier.SurfaceParams... params) {
if (mViewRoot.mView == null) {
throw new IllegalStateException("View of the ViewRootImpl is not initiated.");
}
if (mApplier == null) {
mApplier = new SyncRtSurfaceTransactionApplier(mViewRoot.mView);
}
if (mViewRoot.mView.isHardwareAccelerated()) {
mApplier.scheduleApply(params);
} else {
// Window doesn't support hardware acceleration, no synchronization for now.
// TODO(b/149342281): use mViewRoot.mSurface.getNextFrameNumber() to sync on every
// frame instead.
final SurfaceControl.Transaction t = new SurfaceControl.Transaction();
mApplier.applyParams(t, params);
mApplier.applyTransaction(t, -1);
}
}
@Override
public void postInsetsAnimationCallback(Runnable r) {
mViewRoot.mChoreographer.postCallback(Choreographer.CALLBACK_INSETS_ANIMATION, r,
null /* token */);
}
@Override
public void updateCompatSysUiVisibility(int type, boolean visible, boolean hasControl) {
mViewRoot.updateCompatSysUiVisibility(type, visible, hasControl);
}
@Override
public void updateRequestedVisibilities(InsetsVisibilities vis) {
try {
if (mViewRoot.mAdded) {
mViewRoot.mWindowSession.updateRequestedVisibilities(mViewRoot.mWindow, vis);
}
} catch (RemoteException e) {
Log.e(TAG, "Failed to call insetsModified", e);
}
}
@Override
public boolean hasAnimationCallbacks() {
if (mViewRoot.mView == null) {
return false;
}
return mViewRoot.mView.hasWindowInsetsAnimationCallback();
}
@Override
public void setSystemBarsAppearance(int appearance, int mask) {
mViewRoot.mWindowAttributes.privateFlags |= PRIVATE_FLAG_APPEARANCE_CONTROLLED;
final InsetsFlags insetsFlags = mViewRoot.mWindowAttributes.insetsFlags;
if (insetsFlags.appearance != appearance) {
insetsFlags.appearance = (insetsFlags.appearance & ~mask) | (appearance & mask);
mViewRoot.mWindowAttributesChanged = true;
mViewRoot.scheduleTraversals();
}
}
@Override
public int getSystemBarsAppearance() {
return mViewRoot.mWindowAttributes.insetsFlags.appearance;
}
@Override
public boolean isSystemBarsAppearanceControlled() {
return (mViewRoot.mWindowAttributes.privateFlags & PRIVATE_FLAG_APPEARANCE_CONTROLLED) != 0;
}
@Override
public void setSystemBarsBehavior(int behavior) {
mViewRoot.mWindowAttributes.privateFlags |= PRIVATE_FLAG_BEHAVIOR_CONTROLLED;
if (mViewRoot.mWindowAttributes.insetsFlags.behavior != behavior) {
mViewRoot.mWindowAttributes.insetsFlags.behavior = behavior;
mViewRoot.mWindowAttributesChanged = true;
mViewRoot.scheduleTraversals();
}
}
@Override
public int getSystemBarsBehavior() {
return mViewRoot.mWindowAttributes.insetsFlags.behavior;
}
@Override
public boolean isSystemBarsBehaviorControlled() {
return (mViewRoot.mWindowAttributes.privateFlags & PRIVATE_FLAG_BEHAVIOR_CONTROLLED) != 0;
}
@Override
public void releaseSurfaceControlFromRt(SurfaceControl surfaceControl) {
// At the time we receive new leashes (e.g. InsetsSourceConsumer is processing
// setControl) we need to release the old leash. But we may have already scheduled
// a SyncRtSurfaceTransaction applier to use it from the RenderThread. To avoid
// synchronization issues we also release from the RenderThread so this release
// happens after any existing items on the work queue.
if (mViewRoot.mView != null && mViewRoot.mView.isHardwareAccelerated()) {
mViewRoot.registerRtFrameCallback(frame -> {
surfaceControl.release();
});
// Make sure a frame gets scheduled.
mViewRoot.mView.invalidate();
} else {
surfaceControl.release();
}
}
@Override
public InputMethodManager getInputMethodManager() {
return mViewRoot.mContext.getSystemService(InputMethodManager.class);
}
@Override
public String getRootViewTitle() {
if (mViewRoot == null) {
return null;
}
return mViewRoot.getTitle().toString();
}
@Override
public int dipToPx(int dips) {
if (mViewRoot != null) {
return mViewRoot.dipToPx(dips);
}
return 0;
}
@Override
public IBinder getWindowToken() {
if (mViewRoot == null) {
return null;
}
final View view = mViewRoot.getView();
if (view == null) {
return null;
}
return view.getWindowToken();
}
@Override
public CompatibilityInfo.Translator getTranslator() {
if (mViewRoot != null) {
return mViewRoot.mTranslator;
}
return null;
}
}
|