Get rid of the double quote from the suggestion strip

bug: 5271209
Change-Id: I1823eaac07e184092bdf2a5d607fa08ff680fca5
main
Ken Wakasa 2011-09-08 11:41:46 +09:00
parent 2be872555c
commit 293db0873f
2 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@
-->
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- 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 -->
<string name="magic_space_swapping_symbols">.,;:!?)]}\u0022</string>
<!-- Symbols that should strip a magic space -->

View File

@ -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_CENTER_SUGGESTION_PERCENTILE = 40;
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 mDividerWidth;