Account for RTL with search animation

Change-Id: I869c285e7c0e7a3d14c1a897330d04b794390c76
diff --git a/src/com/android/launcher3/allapps/AllAppsContainerView.java b/src/com/android/launcher3/allapps/AllAppsContainerView.java
index 561cc41..f0469e3 100644
--- a/src/com/android/launcher3/allapps/AllAppsContainerView.java
+++ b/src/com/android/launcher3/allapps/AllAppsContainerView.java
@@ -329,7 +329,11 @@
                         searchInputAnimator.end();
                     }
 
-                    searchInputAnimator.setFloatValues(searchHint.getLeft(), 0);
+                    if (Utilities.isRtl(getContext().getResources())) {
+                        searchInputAnimator.setFloatValues(-searchHint.getLeft(), 0);
+                    } else {
+                        searchInputAnimator.setFloatValues(searchHint.getLeft(), 0);
+                    }
                     searchInputAnimator.start();
                 } else {
                     searchHint.setVisibility(View.VISIBLE);