Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fe2dc348 authored by Tadashi G. Takaoka's avatar Tadashi G. Takaoka
Browse files

Add AZERTY compatible symbols/symbols shifted layouts for tablet

This change also adds Spanish compatible symbols/symbols shifted
layouts for tablet.

Bug: 6100832
Change-Id: Ib5ed9856573657b2680e08f9e64fd09b12a0a27d
parent 546692da
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -26,10 +26,10 @@
        latin:elementKeyboard="@xml/kbd_spanish" />
        latin:elementKeyboard="@xml/kbd_spanish" />
    <Element
    <Element
        latin:elementName="symbols"
        latin:elementName="symbols"
        latin:elementKeyboard="@xml/kbd_symbols" />
        latin:elementKeyboard="@xml/kbd_spanish_symbols" />
    <Element
    <Element
        latin:elementName="symbolsShifted"
        latin:elementName="symbolsShifted"
        latin:elementKeyboard="@xml/kbd_symbols_shift" />
        latin:elementKeyboard="@xml/kbd_spanish_symbols_shift" />
    <Element
    <Element
        latin:elementName="phone"
        latin:elementName="phone"
        latin:elementKeyboard="@xml/kbd_phone" />
        latin:elementKeyboard="@xml/kbd_phone" />
+2 −2
Original line number Original line Diff line number Diff line
@@ -26,10 +26,10 @@
        latin:elementKeyboard="@xml/kbd_azerty" />
        latin:elementKeyboard="@xml/kbd_azerty" />
    <Element
    <Element
        latin:elementName="symbols"
        latin:elementName="symbols"
        latin:elementKeyboard="@xml/kbd_symbols" />
        latin:elementKeyboard="@xml/kbd_azerty_symbols" />
    <Element
    <Element
        latin:elementName="symbolsShifted"
        latin:elementName="symbolsShifted"
        latin:elementKeyboard="@xml/kbd_symbols_shift" />
        latin:elementKeyboard="@xml/kbd_azerty_symbols_shift" />
    <Element
    <Element
        latin:elementName="phone"
        latin:elementName="phone"
        latin:elementKeyboard="@xml/kbd_phone" />
        latin:elementKeyboard="@xml/kbd_phone" />
+26 −0
Original line number Original line Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
/*
**
** Copyright 2012, The Android Open Source Project
**
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
**
**     http://www.apache.org/licenses/LICENSE-2.0
**
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*/
-->

<Keyboard
    xmlns:latin="http://schemas.android.com/apk/res/com.android.inputmethod.latin"
>
    <include
        latin:keyboardLayout="@xml/rows_10_10_7_symbols" />
</Keyboard>
+26 −0
Original line number Original line Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
/*
**
** Copyright 2012, The Android Open Source Project
**
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
**
**     http://www.apache.org/licenses/LICENSE-2.0
**
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*/
-->

<Keyboard
    xmlns:latin="http://schemas.android.com/apk/res/com.android.inputmethod.latin"
>
    <include
        latin:keyboardLayout="@xml/rows_10_10_7_symbols_shift" />
</Keyboard>
+26 −0
Original line number Original line Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
/*
**
** Copyright 2012, The Android Open Source Project
**
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
**
**     http://www.apache.org/licenses/LICENSE-2.0
**
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*/
-->

<Keyboard
    xmlns:latin="http://schemas.android.com/apk/res/com.android.inputmethod.latin"
>
    <include
        latin:keyboardLayout="@xml/rows_10_10_7_symbols" />
</Keyboard>
Loading