Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ec8b7360 authored by Tadashi G. Takaoka's avatar Tadashi G. Takaoka Committed by Android Git Automerger
Browse files

am 77542988: Tune left and right padding of popup mini keyboard

Merge commit '77542988' into gingerbread-plus-aosp

* commit '77542988':
  Tune left and right padding of popup mini keyboard
parents a8f77c36 77542988
Loading
Loading
Loading
Loading
+2 −0
Original line number Original line Diff line number Diff line
@@ -23,6 +23,8 @@
        android:layout_height="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:orientation="horizontal"
        android:background="@drawable/keyboard_popup_panel_background"
        android:background="@drawable/keyboard_popup_panel_background"
        android:paddingLeft="16dip"
        android:paddingRight="16dip"
        >
        >
    <com.android.inputmethod.latin.LatinKeyboardBaseView
    <com.android.inputmethod.latin.LatinKeyboardBaseView
            xmlns:latin="http://schemas.android.com/apk/res/com.android.inputmethod.latin"
            xmlns:latin="http://schemas.android.com/apk/res/com.android.inputmethod.latin"
+1 −1
Original line number Original line Diff line number Diff line
@@ -1129,7 +1129,7 @@ public class LatinKeyboardBaseView extends View implements PointerTracker.UIProx
        if (isNumberAtLeftmost) {
        if (isNumberAtLeftmost) {
            popupX -= container.getPaddingLeft();
            popupX -= container.getPaddingLeft();
        } else {
        } else {
            popupX += popupKey.width + getPaddingLeft();
            popupX += popupKey.width + container.getPaddingLeft();
            popupX -= container.getMeasuredWidth();
            popupX -= container.getMeasuredWidth();
            popupX += container.getPaddingRight();
            popupX += container.getPaddingRight();
        }
        }