mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
Remove unused argument in SuggestionStripLayoutHelper
Bug: 13461039 Change-Id: I3f6227bd56fb81021aaacf0e901eab8a9e91d4a1
This commit is contained in:
parent
1aac375809
commit
14e908c348
@ -507,7 +507,7 @@ final class SuggestionStripLayoutHelper {
|
||||
hintView, 1.0f - mCenterSuggestionWeight, ViewGroup.LayoutParams.MATCH_PARENT);
|
||||
}
|
||||
|
||||
public void layoutImportantNotice(final View importantNoticeStrip, final int stripWidth,
|
||||
public void layoutImportantNotice(final View importantNoticeStrip,
|
||||
final String importantNoticeTitle) {
|
||||
final TextView titleView = (TextView)importantNoticeStrip.findViewById(
|
||||
R.id.important_notice_title);
|
||||
@ -516,8 +516,7 @@ final class SuggestionStripLayoutHelper {
|
||||
titleView.setTextColor(mColorAutoCorrect);
|
||||
titleView.setText(importantNoticeTitle);
|
||||
titleView.setTextScaleX(1.0f); // Reset textScaleX.
|
||||
final float titleScaleX = getTextScaleX(
|
||||
importantNoticeTitle, width, titleView.getPaint());
|
||||
final float titleScaleX = getTextScaleX(importantNoticeTitle, width, titleView.getPaint());
|
||||
titleView.setTextScaleX(titleScaleX);
|
||||
}
|
||||
|
||||
|
@ -232,8 +232,7 @@ public final class SuggestionStripView extends RelativeLayout implements OnClick
|
||||
if (!ImportantNoticeUtils.shouldShowImportantNotice(getContext(), inputAttributes)) {
|
||||
return false;
|
||||
}
|
||||
final int width = getWidth();
|
||||
if (width <= 0) {
|
||||
if (getWidth() <= 0) {
|
||||
return false;
|
||||
}
|
||||
final String importantNoticeTitle = ImportantNoticeUtils.getNextImportantNoticeTitle(
|
||||
@ -241,7 +240,7 @@ public final class SuggestionStripView extends RelativeLayout implements OnClick
|
||||
if (TextUtils.isEmpty(importantNoticeTitle)) {
|
||||
return false;
|
||||
}
|
||||
mLayoutHelper.layoutImportantNotice(mImportantNoticeStrip, width, importantNoticeTitle);
|
||||
mLayoutHelper.layoutImportantNotice(mImportantNoticeStrip, importantNoticeTitle);
|
||||
mStripVisibilityGroup.showImportantNoticeStrip();
|
||||
mImportantNoticeStrip.setOnClickListener(this);
|
||||
return true;
|
||||
|
Loading…
x
Reference in New Issue
Block a user