blob: bcd758984704dda5ca2accca08b24fa4cc9a504c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?xml version="1.0" encoding="utf-8"?>
<Keyboard xmlns:android="http://schemas.android.com/apk/res/android"
android:keyWidth="15%p">
<Row android:rowEdgeFlags="top">
<Key android:keyLabel=".net" android:keyOutputText=".net" android:keyEdgeFlags="left"/>
<Key android:keyLabel=".org" android:keyOutputText=".org"/>
<Key android:keyLabel=".edu" android:keyOutputText=".edu" android:keyEdgeFlags="right"/>
<Key android:keyLabel=".io" android:keyOutputText=".io"/>
<Key android:keyLabel=".info" android:keyOutputText=".info" android:keyEdgeFlags="right"/>
</Row>
<Row android:rowEdgeFlags="bottom">
<Key android:keyLabel=".it" android:keyOutputText=".it" android:keyEdgeFlags="left"/>
<Key android:keyLabel=".gov" android:keyOutputText=".gov"/>
<Key android:keyLabel=".ch" android:keyOutputText=".ch"/>
<Key android:keyLabel=".eu" android:keyOutputText=".eu"/>
<Key android:keyLabel=".fr" android:keyOutputText=".fr"/>
</Row>
</Keyboard>
|