Get rid of auto correction flash animation in the suggestion strip
This change also reverts I1350ad3d. Bug: 5156762 Change-Id: I047e75699e8eea02204ad95e12dcc0aefe49ac34main
parent
1d66cc1be6
commit
bea6b72106
|
@ -107,7 +107,6 @@
|
||||||
</declare-styleable>
|
</declare-styleable>
|
||||||
|
|
||||||
<declare-styleable name="CandidateView">
|
<declare-styleable name="CandidateView">
|
||||||
<attr name="autoCorrectionVisualFlashEnabled" format="boolean" />
|
|
||||||
<attr name="autoCorrectHighlight" format="integer">
|
<attr name="autoCorrectHighlight" format="integer">
|
||||||
<flag name="autoCorrectBold" value="0x01" />
|
<flag name="autoCorrectBold" value="0x01" />
|
||||||
<flag name="autoCorrectUnderline" value="0x02" />
|
<flag name="autoCorrectUnderline" value="0x02" />
|
||||||
|
|
|
@ -39,7 +39,6 @@
|
||||||
<bool name="config_default_compat_recorrection_enabled">true</bool>
|
<bool name="config_default_compat_recorrection_enabled">true</bool>
|
||||||
<bool name="config_default_sound_enabled">false</bool>
|
<bool name="config_default_sound_enabled">false</bool>
|
||||||
<bool name="config_auto_correction_spacebar_led_enabled">true</bool>
|
<bool name="config_auto_correction_spacebar_led_enabled">true</bool>
|
||||||
<bool name="config_auto_correction_suggestion_strip_visual_flash_enabled">false</bool>
|
|
||||||
<!-- Showing mini keyboard, just above the touched point if true, aligned to the key if false -->
|
<!-- Showing mini keyboard, just above the touched point if true, aligned to the key if false -->
|
||||||
<bool name="config_show_mini_keyboard_at_touched_point">false</bool>
|
<bool name="config_show_mini_keyboard_at_touched_point">false</bool>
|
||||||
<!-- The language is never displayed if == 0, always displayed if < 0 -->
|
<!-- The language is never displayed if == 0, always displayed if < 0 -->
|
||||||
|
|
|
@ -85,7 +85,6 @@
|
||||||
<item name="android:background">@drawable/candidate_feedback_background</item>
|
<item name="android:background">@drawable/candidate_feedback_background</item>
|
||||||
</style>
|
</style>
|
||||||
<style name="CandidateViewStyle" parent="SuggestionsStripBackgroundStyle">
|
<style name="CandidateViewStyle" parent="SuggestionsStripBackgroundStyle">
|
||||||
<item name="autoCorrectionVisualFlashEnabled">@bool/config_auto_correction_suggestion_strip_visual_flash_enabled</item>
|
|
||||||
<item name="autoCorrectHighlight">autoCorrectBold</item>
|
<item name="autoCorrectHighlight">autoCorrectBold</item>
|
||||||
<item name="colorTypedWord">#FFFFFFFF</item>
|
<item name="colorTypedWord">#FFFFFFFF</item>
|
||||||
<item name="colorAutoCorrect">#FFFCAE00</item>
|
<item name="colorAutoCorrect">#FFFCAE00</item>
|
||||||
|
@ -189,8 +188,7 @@
|
||||||
<item name="android:background">@drawable/keyboard_popup_panel_background_holo</item>
|
<item name="android:background">@drawable/keyboard_popup_panel_background_holo</item>
|
||||||
</style>
|
</style>
|
||||||
<style name="CandidateViewStyle.IceCreamSandwich" parent="SuggestionsStripBackgroundStyle.IceCreamSandwich">
|
<style name="CandidateViewStyle.IceCreamSandwich" parent="SuggestionsStripBackgroundStyle.IceCreamSandwich">
|
||||||
<item name="autoCorrectionVisualFlashEnabled">@bool/config_auto_correction_suggestion_strip_visual_flash_enabled</item>
|
<item name="autoCorrectHighlight">autoCorrectBold</item>
|
||||||
<item name="autoCorrectHighlight">autoCorrectBold|autoCorrectInvert</item>
|
|
||||||
<item name="colorTypedWord">#FFFFFFFF</item>
|
<item name="colorTypedWord">#FFFFFFFF</item>
|
||||||
<item name="colorAutoCorrect">#FF3DC8FF</item>
|
<item name="colorAutoCorrect">#FF3DC8FF</item>
|
||||||
<item name="colorSuggested">#FFFFFFFF</item>
|
<item name="colorSuggested">#FFFFFFFF</item>
|
||||||
|
|
|
@ -278,7 +278,6 @@ public class CandidateView extends LinearLayout implements OnClickListener, OnLo
|
||||||
|
|
||||||
private final ArrayList<CharSequence> mTexts = new ArrayList<CharSequence>();
|
private final ArrayList<CharSequence> mTexts = new ArrayList<CharSequence>();
|
||||||
|
|
||||||
public final boolean mAutoCorrectionVisualFlashEnabled;
|
|
||||||
public boolean mMoreSuggestionsAvailable;
|
public boolean mMoreSuggestionsAvailable;
|
||||||
|
|
||||||
public SuggestionsStripParams(Context context, AttributeSet attrs, int defStyle,
|
public SuggestionsStripParams(Context context, AttributeSet attrs, int defStyle,
|
||||||
|
@ -286,8 +285,6 @@ public class CandidateView extends LinearLayout implements OnClickListener, OnLo
|
||||||
super(words, dividers, infos);
|
super(words, dividers, infos);
|
||||||
final TypedArray a = context.obtainStyledAttributes(
|
final TypedArray a = context.obtainStyledAttributes(
|
||||||
attrs, R.styleable.CandidateView, defStyle, R.style.CandidateViewStyle);
|
attrs, R.styleable.CandidateView, defStyle, R.style.CandidateViewStyle);
|
||||||
mAutoCorrectionVisualFlashEnabled = a.getBoolean(
|
|
||||||
R.styleable.CandidateView_autoCorrectionVisualFlashEnabled, false);
|
|
||||||
mAutoCorrectHighlight = a.getInt(R.styleable.CandidateView_autoCorrectHighlight, 0);
|
mAutoCorrectHighlight = a.getInt(R.styleable.CandidateView_autoCorrectHighlight, 0);
|
||||||
mColorTypedWord = a.getColor(R.styleable.CandidateView_colorTypedWord, 0);
|
mColorTypedWord = a.getColor(R.styleable.CandidateView_colorTypedWord, 0);
|
||||||
mColorAutoCorrect = a.getColor(R.styleable.CandidateView_colorAutoCorrect, 0);
|
mColorAutoCorrect = a.getColor(R.styleable.CandidateView_colorAutoCorrect, 0);
|
||||||
|
@ -584,7 +581,7 @@ public class CandidateView extends LinearLayout implements OnClickListener, OnLo
|
||||||
final int width = getWidth();
|
final int width = getWidth();
|
||||||
final int countInStrip = mStripParams.layout(
|
final int countInStrip = mStripParams.layout(
|
||||||
mSuggestions, mCandidatesStrip, mCandidatesPane, width);
|
mSuggestions, mCandidatesStrip, mCandidatesPane, width);
|
||||||
final int countInPane = mPaneParams.layout(
|
mPaneParams.layout(
|
||||||
mSuggestions, mCandidatesPane, countInStrip, mStripParams.getTextColor(), width);
|
mSuggestions, mCandidatesPane, countInStrip, mStripParams.getTextColor(), width);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -703,9 +700,6 @@ public class CandidateView extends LinearLayout implements OnClickListener, OnLo
|
||||||
}
|
}
|
||||||
|
|
||||||
public void onAutoCorrectionInverted(CharSequence autoCorrectedWord) {
|
public void onAutoCorrectionInverted(CharSequence autoCorrectedWord) {
|
||||||
if (!mStripParams.mAutoCorrectionVisualFlashEnabled) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
final CharSequence inverted = mStripParams.getInvertedText(autoCorrectedWord);
|
final CharSequence inverted = mStripParams.getInvertedText(autoCorrectedWord);
|
||||||
if (inverted == null)
|
if (inverted == null)
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in New Issue