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

Commit 43d7b83e authored by Adam Powell's avatar Adam Powell Committed by Android (Google) Code Review
Browse files

Merge "Fix bug 3391818 - Keyboard covers the "Show in chat list" selection in...

Merge "Fix bug 3391818 - Keyboard covers the "Show in chat list" selection in talk > Friend Info" into honeycomb
parents 6f7a6bc3 6f5e934b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -190,6 +190,7 @@ public class ListPopupWindow {
    public ListPopupWindow(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
        mContext = context;
        mPopup = new PopupWindow(context, attrs, defStyleAttr, defStyleRes);
        mPopup.setInputMethodMode(PopupWindow.INPUT_METHOD_NEEDED);
    }

    /**
@@ -576,7 +577,6 @@ public class ListPopupWindow {
            }

            mPopup.setWindowLayoutMode(widthSpec, heightSpec);
            mPopup.setInputMethodMode(PopupWindow.INPUT_METHOD_NEEDED);
            mPopup.setClipToScreenEnabled(true);
            
            // use outside touchable to dismiss drop down when touching outside of it, so
+1 −0
Original line number Diff line number Diff line
@@ -665,6 +665,7 @@ public class Spinner extends AbsSpinner implements OnClickListener {
        @Override
        public void show() {
            setWidth(Spinner.this.getWidth());
            setInputMethodMode(ListPopupWindow.INPUT_METHOD_NOT_NEEDED);
            super.show();
            getListView().setChoiceMode(ListView.CHOICE_MODE_SINGLE);
            setSelection(Spinner.this.getSelectedItemPosition());