aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/suggestions/SuggestionsView.java
diff options
context:
space:
mode:
authorTadashi G. Takaoka <takaoka@google.com>2012-04-02 22:55:12 +0900
committerTadashi G. Takaoka <takaoka@google.com>2012-04-02 22:55:12 +0900
commitc8461d1ae26d43a09c0f835d833f3d49fbe8d2f3 (patch)
treef9aa411c51b91e53ac58b607c4d1b9cff484f2f2 /java/src/com/android/inputmethod/latin/suggestions/SuggestionsView.java
parent01127fad51ee7186ed7c702cad369cdea6d4f101 (diff)
downloadlatinime-c8461d1ae26d43a09c0f835d833f3d49fbe8d2f3.tar.gz
latinime-c8461d1ae26d43a09c0f835d833f3d49fbe8d2f3.tar.xz
latinime-c8461d1ae26d43a09c0f835d833f3d49fbe8d2f3.zip
Cleanup FrameLayoutCompatUtils to ViewLayoutUtils
Bug: 6129704 Change-Id: I52f2e236c7dae3ac2cba64392165f955a53d3f42
Diffstat (limited to 'java/src/com/android/inputmethod/latin/suggestions/SuggestionsView.java')
-rw-r--r--java/src/com/android/inputmethod/latin/suggestions/SuggestionsView.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/java/src/com/android/inputmethod/latin/suggestions/SuggestionsView.java b/java/src/com/android/inputmethod/latin/suggestions/SuggestionsView.java
index ca253543e..1ad37b933 100644
--- a/java/src/com/android/inputmethod/latin/suggestions/SuggestionsView.java
+++ b/java/src/com/android/inputmethod/latin/suggestions/SuggestionsView.java
@@ -52,11 +52,11 @@ import android.widget.PopupWindow;
import android.widget.RelativeLayout;
import android.widget.TextView;
-import com.android.inputmethod.compat.FrameLayoutCompatUtils;
import com.android.inputmethod.keyboard.KeyboardActionListener;
import com.android.inputmethod.keyboard.KeyboardView;
import com.android.inputmethod.keyboard.MoreKeysPanel;
import com.android.inputmethod.keyboard.PointerTracker;
+import com.android.inputmethod.keyboard.ViewLayoutUtils;
import com.android.inputmethod.latin.LatinImeLogger;
import com.android.inputmethod.latin.R;
import com.android.inputmethod.latin.StaticInnerHandlerWrapper;
@@ -416,7 +416,7 @@ public class SuggestionsView extends RelativeLayout implements OnClickListener,
ViewGroup.LayoutParams.WRAP_CONTENT);
final int infoWidth = info.getMeasuredWidth();
final int y = info.getMeasuredHeight();
- FrameLayoutCompatUtils.placeViewAt(
+ ViewLayoutUtils.placeViewAt(
info, x - infoWidth, y, infoWidth, info.getMeasuredHeight());
}
}