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

Commit 33ed8993 authored by Seigo Nonaka's avatar Seigo Nonaka Committed by android-build-merger
Browse files

Merge "Fix unexpected truncation again." into nyc-dev

am: ab8913e3

* commit 'ab8913e3':
  Fix unexpected truncation again.

Change-Id: Ie5bf5250bf17c76ac2d6add63c20fb4aa25dfffb
parents 83281ad1 ab8913e3
Loading
Loading
Loading
Loading
+10 −11
Original line number Diff line number Diff line
@@ -3251,6 +3251,7 @@ public class Editor {
        private final SuggestionSpanInfo mMisspelledSpanInfo = new SuggestionSpanInfo();
        private int mContainerMarginWidth;
        private int mContainerMarginTop;
        private LinearLayout mContainerView;

        private class CustomPopupWindow extends PopupWindow {
            @Override
@@ -3288,20 +3289,19 @@ public class Editor {
        protected void initContentView() {
            final LayoutInflater inflater = (LayoutInflater) mTextView.getContext().
                    getSystemService(Context.LAYOUT_INFLATER_SERVICE);
            final ViewGroup relativeLayout = (ViewGroup) inflater.inflate(
            mContentView = (ViewGroup) inflater.inflate(
                    mTextView.mTextEditSuggestionContainerLayout, null);

            final LinearLayout suggestionWindowContainer =
                    (LinearLayout) relativeLayout.findViewById(
            mContainerView = (LinearLayout) mContentView.findViewById(
                    com.android.internal.R.id.suggestionWindowContainer);
            ViewGroup.MarginLayoutParams lp =
                    (ViewGroup.MarginLayoutParams) suggestionWindowContainer.getLayoutParams();
                    (ViewGroup.MarginLayoutParams) mContainerView.getLayoutParams();
            mContainerMarginWidth = lp.leftMargin + lp.rightMargin;
            mContainerMarginTop = lp.topMargin;
            mClippingLimitLeft = lp.leftMargin;
            mClippingLimitRight = lp.rightMargin;

            mSuggestionListView = (ListView) relativeLayout.findViewById(
            mSuggestionListView = (ListView) mContentView.findViewById(
                    com.android.internal.R.id.suggestionContainer);

            mSuggestionsAdapter = new SuggestionAdapter();
@@ -3314,9 +3314,7 @@ public class Editor {
                mSuggestionInfos[i] = new SuggestionInfo();
            }

            mContentView = relativeLayout;

            mAddToDictionaryButton = (TextView) relativeLayout.findViewById(
            mAddToDictionaryButton = (TextView) mContentView.findViewById(
                    com.android.internal.R.id.addToDictionaryButton);
            mAddToDictionaryButton.setOnClickListener(new View.OnClickListener() {
                public void onClick(View v) {
@@ -3349,7 +3347,7 @@ public class Editor {
                }
            });

            mDeleteButton = (TextView) relativeLayout.findViewById(
            mDeleteButton = (TextView) mContentView.findViewById(
                    com.android.internal.R.id.deleteButton);
            mDeleteButton.setOnClickListener(new View.OnClickListener() {
                public void onClick(View v) {
@@ -3461,7 +3459,8 @@ public class Editor {
            mDeleteButton.measure(horizontalMeasure, verticalMeasure);
            width = Math.max(width, mDeleteButton.getMeasuredWidth());

            width += mContainerMarginWidth;
            width += mContainerView.getPaddingLeft() + mContainerView.getPaddingRight()
                    + mContainerMarginWidth;

            // Enforce the width based on actual text widths
            mContentView.measure(
+1 −1
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@
    android:layout_height="wrap_content">
    <LinearLayout
        android:id="@+id/suggestionWindowContainer"
        android:layout_width="wrap_content"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:elevation="@android:dimen/text_edit_floating_toolbar_elevation"
+1 −1
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@
    android:layout_height="wrap_content">
    <LinearLayout
        android:id="@+id/suggestionWindowContainer"
        android:layout_width="wrap_content"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="?android:attr/floatingToolbarPopupBackgroundDrawable"
        android:elevation="@android:dimen/text_edit_floating_toolbar_elevation"