Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DSwitch.java1341 final Insets thumbInsets; in draw() local
1343 thumbInsets = mThumbDrawable.getOpticalInsets(); in draw()
1345 thumbInsets = Insets.NONE; in draw()
1360 if (thumbInsets != Insets.NONE) { in draw()
1361 if (thumbInsets.left > padding.left) { in draw()
1362 trackLeft += thumbInsets.left - padding.left; in draw()
1364 if (thumbInsets.top > padding.top) { in draw()
1365 trackTop += thumbInsets.top - padding.top; in draw()
1367 if (thumbInsets.right > padding.right) { in draw()
1368 trackRight -= thumbInsets.right - padding.right; in draw()
[all …]