• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<!--
3/*
4**
5** Copyright 2008, The Android Open Source Project
6**
7** Licensed under the Apache License, Version 2.0 (the "License");
8** you may not use this file except in compliance with the License.
9** You may obtain a copy of the License at
10**
11**     http://www.apache.org/licenses/LICENSE-2.0
12**
13** Unless required by applicable law or agreed to in writing, software
14** distributed under the License is distributed on an "AS IS" BASIS,
15** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16** See the License for the specific language governing permissions and
17** limitations under the License.
18*/
19-->
20
21<Keyboard xmlns:android="http://schemas.android.com/apk/res/android"
22    android:keyWidth="10%p"
23    android:horizontalGap="0px"
24    android:verticalGap="0px"
25    android:keyHeight="@dimen/key_height"
26    >
27
28    <Row>
29        <Key android:keyLabel="~" android:keyEdgeFlags="left"/>
30        <Key android:keyLabel="`"/>
31        <Key android:keyLabel="|"/>
32        <Key android:keyLabel="•"/>
33        <Key android:keyLabel="√"/>
34        <Key android:keyLabel="π"/>
35        <Key android:keyLabel="÷"/>
36        <Key android:keyLabel="×"/>
37        <Key android:keyLabel="{"/>
38        <Key android:keyLabel="}" android:keyEdgeFlags="right"/>
39    </Row>
40
41    <Row>
42        <Key android:keyLabel="¥" android:keyEdgeFlags="left"/>
43        <Key android:keyLabel="£"/>
44        <Key android:keyLabel="¢"/>
45        <Key android:keyLabel="€"/>
46        <Key android:keyLabel="°"/>
47        <Key android:keyLabel="^"/>
48        <Key android:keyLabel="_"/>
49        <Key android:keyLabel="="
50                android:popupKeyboard="@xml/kbd_popup_template"
51                android:popupCharacters="≠≈∞"
52        />
53        <Key android:keyLabel="["/>
54        <Key android:keyLabel="]" android:keyEdgeFlags="right"/>
55    </Row>
56
57    <Row>
58        <Key android:codes="-1" android:keyLabel="@string/label_alt_key"
59                android:keyWidth="15%p" android:isModifier="true"
60                android:isSticky="true" android:keyEdgeFlags="left"/>
61        <Key android:keyLabel="™"/>
62        <Key android:keyLabel="®"/>
63        <Key android:keyLabel="©"/>
64        <Key android:keyLabel="¶"/>
65        <Key android:keyLabel="\\"/>
66        <Key android:keyLabel="&lt;"
67                android:popupKeyboard="@xml/kbd_popup_template"
68                android:popupCharacters="≤«‹"
69        />
70        <Key android:keyLabel="&gt;"
71                android:popupKeyboard="@xml/kbd_popup_template"
72                android:popupCharacters="≥»›"
73        />
74        <Key android:codes="-5" android:keyIcon="@drawable/sym_keyboard_delete" android:keyWidth="15%p" android:keyEdgeFlags="right"
75                android:iconPreview="@drawable/sym_keyboard_feedback_delete"
76                android:isRepeatable="true"/>
77    </Row>
78
79    <Row android:rowEdgeFlags="bottom">
80        <Key android:codes="-2" android:keyLabel="@string/label_alpha_key" android:keyWidth="20%p"
81                android:popupKeyboard="@xml/kbd_popup_template"
82                android:popupCharacters="_"
83                android:keyEdgeFlags="left"/>
84        <Key android:keyLabel="„" android:keyWidth="10%p" />
85        <Key android:codes="32" android:keyIcon="@drawable/sym_keyboard_space"
86                android:keyWidth="40%p"
87                android:iconPreview="@drawable/sym_keyboard_feedback_space"
88                android:isRepeatable="true"/>
89        <Key android:keyLabel="…" android:keyWidth="10%p" />
90        <Key android:codes="10" android:keyIcon="@drawable/sym_keyboard_return"
91                android:keyWidth="20%p" android:keyEdgeFlags="right"
92                android:iconPreview="@drawable/sym_keyboard_feedback_return"
93                />
94    </Row>
95</Keyboard>
96