Merge "Pass correct units for text size in autocomplete drop down."

This commit is contained in:
Ben Murdoch
2011-10-06 10:23:20 -07:00
committed by Android (Google) Code Review

View File

@@ -832,7 +832,7 @@ import junit.framework.Assert;
TextView tv =
(TextView) super.getView(position, convertView, parent);
if (tv != null && mTextView != null) {
tv.setTextSize(mTextView.getTextSize());
tv.setTextSize(TypedValue.COMPLEX_UNIT_PX, mTextView.getTextSize());
}
return tv;
}