Home
last modified time | relevance | path

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

/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/widget/
DPrintContentView.java74 private float mDragProgress; field in PrintContentView
209 final int adjustedAlpha = (int) (baseAlpha * (1 - mDragProgress)); in computeScrimColor()
312 if (Float.compare(mDragProgress, progress) == 0) { in onDragProgress()
316 if ((mDragProgress == 0 && progress > 0) in onDragProgress()
317 || (mDragProgress == 1.0f && progress < 1.0f)) { in onDragProgress()
323 if ((mDragProgress > 0 && progress == 0) in onDragProgress()
324 || (mDragProgress < 1.0f && progress == 1.0f)) { in onDragProgress()
331 mDragProgress = progress; in onDragProgress()