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.java75 private float mDragProgress; field in PrintContentView
210 final int adjustedAlpha = (int) (baseAlpha * (1 - mDragProgress)); in computeScrimColor()
313 if (Float.compare(mDragProgress, progress) == 0) { in onDragProgress()
317 if ((mDragProgress == 0 && progress > 0) in onDragProgress()
318 || (mDragProgress == 1.0f && progress < 1.0f)) { in onDragProgress()
324 if ((mDragProgress > 0 && progress == 0) in onDragProgress()
325 || (mDragProgress < 1.0f && progress == 1.0f)) { in onDragProgress()
332 mDragProgress = progress; in onDragProgress()