Use RectF for mHoverBounds in DialpadKeyButton

Bug:18314401
Change-Id: I226e5bf69e29b6cdaca0e6bd18a6d9f50f2a2c37
diff --git a/src/com/android/phone/common/dialpad/DialpadKeyButton.java b/src/com/android/phone/common/dialpad/DialpadKeyButton.java
index 4e3781c..8762914 100644
--- a/src/com/android/phone/common/dialpad/DialpadKeyButton.java
+++ b/src/com/android/phone/common/dialpad/DialpadKeyButton.java
@@ -17,7 +17,7 @@
 package com.android.phone.common.dialpad;
 
 import android.content.Context;
-import android.graphics.Rect;
+import android.graphics.RectF;
 import android.os.Bundle;
 import android.util.AttributeSet;
 import android.view.MotionEvent;
@@ -51,7 +51,7 @@
     private AccessibilityManager mAccessibilityManager;
 
     /** Bounds used to filter HOVER_EXIT events. */
-    private Rect mHoverBounds = new Rect();
+    private RectF mHoverBounds = new RectF();
 
     /** Whether this view is currently in the long-hover state. */
     private boolean mLongHovered;
@@ -169,7 +169,7 @@
                     setLongClickable(false);
                     break;
                 case MotionEvent.ACTION_HOVER_EXIT:
-                    if (mHoverBounds.contains((int) event.getX(), (int) event.getY())) {
+                    if (mHoverBounds.contains(event.getX(), event.getY())) {
                         if (mLongHovered) {
                             performLongClick();
                         } else {