Merge "Fix regression, don't NPE if Switch doesn't have a thumb set" into lmp-mr1-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
db82c9e00e
@@ -689,6 +689,10 @@ public class Switch extends CompoundButton {
|
|||||||
* @return true if (x, y) is within the target area of the switch thumb
|
* @return true if (x, y) is within the target area of the switch thumb
|
||||||
*/
|
*/
|
||||||
private boolean hitThumb(float x, float y) {
|
private boolean hitThumb(float x, float y) {
|
||||||
|
if (mThumbDrawable == null) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
// Relies on mTempRect, MUST be called first!
|
// Relies on mTempRect, MUST be called first!
|
||||||
final int thumbOffset = getThumbOffset();
|
final int thumbOffset = getThumbOffset();
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user