am 77542988: Tune left and right padding of popup mini keyboard
Merge commit '77542988b809fba6a59aa86982eb4d9e4269477e' into gingerbread-plus-aosp * commit '77542988b809fba6a59aa86982eb4d9e4269477e': Tune left and right padding of popup mini keyboardmain
commit
ec8b736016
|
@ -23,6 +23,8 @@
|
|||
android:layout_height="wrap_content"
|
||||
android:orientation="horizontal"
|
||||
android:background="@drawable/keyboard_popup_panel_background"
|
||||
android:paddingLeft="16dip"
|
||||
android:paddingRight="16dip"
|
||||
>
|
||||
<com.android.inputmethod.latin.LatinKeyboardBaseView
|
||||
xmlns:latin="http://schemas.android.com/apk/res/com.android.inputmethod.latin"
|
||||
|
|
|
@ -1129,7 +1129,7 @@ public class LatinKeyboardBaseView extends View implements PointerTracker.UIProx
|
|||
if (isNumberAtLeftmost) {
|
||||
popupX -= container.getPaddingLeft();
|
||||
} else {
|
||||
popupX += popupKey.width + getPaddingLeft();
|
||||
popupX += popupKey.width + container.getPaddingLeft();
|
||||
popupX -= container.getMeasuredWidth();
|
||||
popupX += container.getPaddingRight();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue