From 1d3efb6f64758e3b0c1e197e1bb259e14074e90b Mon Sep 17 00:00:00 2001 From: Seigo Nonaka Date: Thu, 7 Apr 2016 16:23:21 +0900 Subject: [PATCH] Fix suggestion popup for RTL text on LTR layout. By setting width to the ListView, the width of the containing text view won't match with parent. I locally verified this doesn't revive issue 27341560. Bug: 28034210 Change-Id: I67886a752ef110d3433dddd6aa8447a9027f8e19 --- core/java/android/widget/Editor.java | 1 - 1 file changed, 1 deletion(-) diff --git a/core/java/android/widget/Editor.java b/core/java/android/widget/Editor.java index 7055f783c584c..5e7fc708e617c 100644 --- a/core/java/android/widget/Editor.java +++ b/core/java/android/widget/Editor.java @@ -3462,7 +3462,6 @@ public class Editor { popupBackground.getPadding(mTempRect); width += mTempRect.left + mTempRect.right; } - mSuggestionListView.getLayoutParams().width = width; mPopupWindow.setWidth(width); }