Lines Matching defs:DisplayList

30 public abstract class DisplayList {
33 * {@link HardwareCanvas#drawDisplayList(DisplayList, android.graphics.Rect, int)}
45 * @see HardwareCanvas#drawDisplayList(DisplayList, android.graphics.Rect, int)
52 * @see HardwareCanvas#drawDisplayList(DisplayList, android.graphics.Rect, int)
59 * @see HardwareCanvas#drawDisplayList(DisplayList, android.graphics.Rect, int)
67 * @see HardwareCanvas#drawDisplayList(DisplayList, android.graphics.Rect, int)
114 // DisplayList Property Setters
118 * Set the caching property on the DisplayList, which indicates whether the DisplayList
122 * @param caching true if the DisplayList represents a hardware layer, false otherwise.
127 * Set whether the DisplayList should clip itself to its bounds. This property is controlled by
130 * @param clipChildren true if the DisplayList should clip to its bounds
135 * Set the static matrix on the DisplayList. This matrix exists if a custom ViewGroup
139 * This matrix will be concatenated with any other matrices in the DisplayList to position
147 * Set the Animation matrix on the DisplayList. This matrix exists if an Animation is
148 * currently playing on a View, and is set on the DisplayList during at draw() time. When
157 * Sets the alpha value for the DisplayList
159 * @param alpha The translucency of the DisplayList
165 * Sets whether the DisplayList renders content which overlaps. Non-overlapping rendering
174 * Sets the translationX value for the DisplayList
176 * @param translationX The translationX value of the DisplayList
182 * Sets the translationY value for the DisplayList
184 * @param translationY The translationY value of the DisplayList
190 * Sets the rotation value for the DisplayList
192 * @param rotation The rotation value of the DisplayList
198 * Sets the rotationX value for the DisplayList
200 * @param rotationX The rotationX value of the DisplayList
206 * Sets the rotationY value for the DisplayList
208 * @param rotationY The rotationY value of the DisplayList
214 * Sets the scaleX value for the DisplayList
216 * @param scaleX The scaleX value of the DisplayList
222 * Sets the scaleY value for the DisplayList
224 * @param scaleY The scaleY value of the DisplayList
230 * Sets all of the transform-related values of the View onto the DisplayList
232 * @param alpha The alpha value of the DisplayList
233 * @param translationX The translationX value of the DisplayList
234 * @param translationY The translationY value of the DisplayList
235 * @param rotation The rotation value of the DisplayList
236 * @param rotationX The rotationX value of the DisplayList
237 * @param rotationY The rotationY value of the DisplayList
238 * @param scaleX The scaleX value of the DisplayList
239 * @param scaleY The scaleY value of the DisplayList
245 * Sets the pivotX value for the DisplayList
247 * @param pivotX The pivotX value of the DisplayList
253 * Sets the pivotY value for the DisplayList
255 * @param pivotY The pivotY value of the DisplayList
261 * Sets the camera distance for the DisplayList
263 * @param distance The distance in z of the camera of the DisplayList
269 * Sets the left value for the DisplayList
271 * @param left The left value of the DisplayList
277 * Sets the top value for the DisplayList
279 * @param top The top value of the DisplayList
285 * Sets the right value for the DisplayList
287 * @param right The right value of the DisplayList
293 * Sets the bottom value for the DisplayList
295 * @param bottom The bottom value of the DisplayList
301 * Sets the left and top values for the DisplayList
303 * @param left The left value of the DisplayList
304 * @param top The top value of the DisplayList
311 * Sets the left and top values for the DisplayList
313 * @param left The left value of the DisplayList
314 * @param top The top value of the DisplayList
321 * Offsets the left and right values for the DisplayList
323 * @param offset The amount that the left and right values of the DisplayList are offset
329 * Offsets the top and bottom values for the DisplayList
331 * @param offset The amount that the top and bottom values of the DisplayList are offset