(picker: android.widget.NumberPicker)
| 55 | } |
| 56 | |
| 57 | function getEditText(picker: android.widget.NumberPicker): android.widget.EditText { |
| 58 | for (let i = 0, count = picker.getChildCount(); i < count; i++) { |
| 59 | const child = picker.getChildAt(i); |
| 60 | if (child instanceof android.widget.EditText) { |
| 61 | return child; |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | return null; |
| 66 | } |
| 67 | |
| 68 | let selectorWheelPaintField: java.lang.reflect.Field; |
| 69 | function getSelectorWheelPaint(picker: android.widget.NumberPicker): android.graphics.Paint { |
no test coverage detected