Add preliminary subtypes disabled for L-preview
Bug: 13966540 Bug: 13779052 Bug: 10028772 Bug: 7963632 Change-Id: Ieec809f2d391e90b1ec547a3a89e929db47a5ed1main
parent
5a9ccbbef1
commit
8f70552a21
|
@ -81,7 +81,7 @@
|
|||
pt_PT: Portuguese (Portugal)/qwerty
|
||||
ro: Romanian/qwerty
|
||||
ru: Russian/east_slavic
|
||||
si_LK: Sinhala (Sri Lanka)/sinhala # This is a preliminary keyboard layout.
|
||||
(si_LK: Sinhala (Sri Lanka)/sinhala) # This is a preliminary keyboard layout.
|
||||
sk: Slovak/qwerty
|
||||
sl: Slovenian/qwerty
|
||||
sr: Serbian/south_slavic
|
||||
|
@ -333,7 +333,6 @@
|
|||
/>
|
||||
<!-- TODO: This hindi_compact keyboard is a preliminary layout.
|
||||
This isn't based on the final specification. -->
|
||||
<!--
|
||||
<subtype android:icon="@drawable/ic_ime_switcher_dark"
|
||||
android:label="@string/subtype_generic_compact"
|
||||
android:subtypeId="0xe49c89a1"
|
||||
|
@ -342,7 +341,6 @@
|
|||
android:imeSubtypeExtraValue="KeyboardLayoutSet=hindi_compact,EmojiCapable"
|
||||
android:isAsciiCapable="false"
|
||||
/>
|
||||
-->
|
||||
<subtype android:icon="@drawable/ic_ime_switcher_dark"
|
||||
android:label="@string/subtype_generic"
|
||||
android:subtypeId="0x35b7526a"
|
||||
|
@ -483,7 +481,6 @@
|
|||
/>
|
||||
<!-- TODO: This marathi keyboard is a preliminary layout.
|
||||
This isn't based on the final specification. -->
|
||||
<!--
|
||||
<subtype android:icon="@drawable/ic_ime_switcher_dark"
|
||||
android:label="@string/subtype_generic"
|
||||
android:subtypeId="0x747b9f03"
|
||||
|
@ -492,7 +489,6 @@
|
|||
android:imeSubtypeExtraValue="KeyboardLayoutSet=marathi,EmojiCapable"
|
||||
android:isAsciiCapable="false"
|
||||
/>
|
||||
-->
|
||||
<subtype android:icon="@drawable/ic_ime_switcher_dark"
|
||||
android:label="@string/subtype_generic"
|
||||
android:subtypeId="0x84c87c61"
|
||||
|
@ -503,7 +499,6 @@
|
|||
/>
|
||||
<!-- TODO: This Myanmar keyboard is a preliminary layout.
|
||||
This isn't based on the final specification. -->
|
||||
<!--
|
||||
<subtype android:icon="@drawable/ic_ime_switcher_dark"
|
||||
android:label="@string/subtype_generic"
|
||||
android:subtypeId="0xea266ea4"
|
||||
|
@ -512,7 +507,6 @@
|
|||
android:imeSubtypeExtraValue="KeyboardLayoutSet=myanmar,EmojiCapable,CombiningRules=MyanmarReordering"
|
||||
android:isAsciiCapable="false"
|
||||
/>
|
||||
-->
|
||||
<subtype android:icon="@drawable/ic_ime_switcher_dark"
|
||||
android:label="@string/subtype_generic"
|
||||
android:subtypeId="0x3f12ee14"
|
||||
|
@ -593,6 +587,8 @@
|
|||
android:imeSubtypeExtraValue="SupportTouchPositionCorrection,EmojiCapable"
|
||||
android:isAsciiCapable="false"
|
||||
/>
|
||||
<!-- TODO: This sinhala keyboard is a preliminary layout.
|
||||
This isn't based on the final specification. -->
|
||||
<subtype android:icon="@drawable/ic_ime_switcher_dark"
|
||||
android:label="@string/subtype_generic"
|
||||
android:subtypeId="0x5c6b3bde"
|
||||
|
|
|
@ -25,7 +25,7 @@ import java.util.ArrayList;
|
|||
|
||||
@SmallTest
|
||||
public class KeyboardLayoutSetSubtypesCountTests extends KeyboardLayoutSetTestsBase {
|
||||
private static final int NUMBER_OF_SUBTYPES = 68;
|
||||
private static final int NUMBER_OF_SUBTYPES = 72;
|
||||
private static final int NUMBER_OF_ASCII_CAPABLE_SUBTYPES = 45;
|
||||
private static final int NUMBER_OF_PREDEFINED_ADDITIONAL_SUBTYPES = 2;
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
|
||||
package com.android.inputmethod.keyboard.layout.tests;
|
||||
|
||||
import android.test.suitebuilder.annotation.Suppress;
|
||||
import android.test.suitebuilder.annotation.SmallTest;
|
||||
|
||||
import com.android.inputmethod.keyboard.layout.HindiCompact;
|
||||
import com.android.inputmethod.keyboard.layout.HindiCompact.HindiCompactCustomizer;
|
||||
|
@ -27,7 +27,7 @@ import java.util.Locale;
|
|||
/**
|
||||
* hi: Hindi/hindi_compact
|
||||
*/
|
||||
@Suppress
|
||||
@SmallTest
|
||||
public final class TestsHindiCompact extends LayoutTestsBase {
|
||||
private static final Locale LOCALE = new Locale("hi");
|
||||
private static final LayoutBase LAYOUT = new HindiCompact(new HindiCompactCustomizer(LOCALE));
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
|
||||
package com.android.inputmethod.keyboard.layout.tests;
|
||||
|
||||
import android.test.suitebuilder.annotation.Suppress;
|
||||
import android.test.suitebuilder.annotation.SmallTest;
|
||||
|
||||
import com.android.inputmethod.keyboard.layout.LayoutBase;
|
||||
import com.android.inputmethod.keyboard.layout.Marathi;
|
||||
|
@ -27,7 +27,7 @@ import java.util.Locale;
|
|||
/**
|
||||
* mr_IN: Marathi (India)/marathi
|
||||
*/
|
||||
@Suppress
|
||||
@SmallTest
|
||||
public final class TestsMarathiIN extends LayoutTestsBase {
|
||||
private static final Locale LOCALE = new Locale("mr", "IN");
|
||||
private static final LayoutBase LAYOUT = new Marathi(new MarathiCustomizer(LOCALE));
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
|
||||
package com.android.inputmethod.keyboard.layout.tests;
|
||||
|
||||
import android.test.suitebuilder.annotation.Suppress;
|
||||
import android.test.suitebuilder.annotation.SmallTest;
|
||||
|
||||
import com.android.inputmethod.keyboard.layout.LayoutBase;
|
||||
import com.android.inputmethod.keyboard.layout.Myanmar;
|
||||
|
@ -27,7 +27,7 @@ import java.util.Locale;
|
|||
/**
|
||||
* my_MM: Myanmar (Myanmar)/myanmar
|
||||
*/
|
||||
@Suppress
|
||||
@SmallTest
|
||||
public final class TestsMyanmarMM extends LayoutTestsBase {
|
||||
private static final Locale LOCALE = new Locale("my", "MM");
|
||||
private static final LayoutBase LAYOUT = new Myanmar(new MyanmarCustomizer(LOCALE));
|
||||
|
|
Loading…
Reference in New Issue