Get rid of the double quote from the suggestion strip
bug: 5271209 Change-Id: I1823eaac07e184092bdf2a5d607fa08ff680fca5
This commit is contained in:
parent
2be872555c
commit
293db0873f
2 changed files with 2 additions and 2 deletions
|
@ -19,7 +19,7 @@
|
||||||
-->
|
-->
|
||||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||||
<!-- Symbols that are suggested between words -->
|
<!-- Symbols that are suggested between words -->
|
||||||
<string name="suggested_punctuations">!?,\u0022:;()\u0027-/@_</string>
|
<string name="suggested_punctuations">!?,:;\u0022()\u0027-/@_</string>
|
||||||
<!-- Symbols that should be swapped with a magic space -->
|
<!-- Symbols that should be swapped with a magic space -->
|
||||||
<string name="magic_space_swapping_symbols">.,;:!?)]}\u0022</string>
|
<string name="magic_space_swapping_symbols">.,;:!?)]}\u0022</string>
|
||||||
<!-- Symbols that should strip a magic space -->
|
<!-- Symbols that should strip a magic space -->
|
||||||
|
|
|
@ -146,7 +146,7 @@ public class SuggestionsView extends RelativeLayout implements OnClickListener,
|
||||||
private static final int DEFAULT_SUGGESTIONS_COUNT_IN_STRIP = 3;
|
private static final int DEFAULT_SUGGESTIONS_COUNT_IN_STRIP = 3;
|
||||||
private static final int DEFAULT_CENTER_SUGGESTION_PERCENTILE = 40;
|
private static final int DEFAULT_CENTER_SUGGESTION_PERCENTILE = 40;
|
||||||
private static final int DEFAULT_MAX_MORE_SUGGESTIONS_ROW = 2;
|
private static final int DEFAULT_MAX_MORE_SUGGESTIONS_ROW = 2;
|
||||||
private static final int PUNCTUATIONS_IN_STRIP = 6;
|
private static final int PUNCTUATIONS_IN_STRIP = 5;
|
||||||
|
|
||||||
public final int mPadding;
|
public final int mPadding;
|
||||||
public final int mDividerWidth;
|
public final int mDividerWidth;
|
||||||
|
|
Loading…
Reference in a new issue