Add icons + Nothing

This commit is contained in:
juloo 2015-08-04 17:55:48 +02:00
parent 1be1ec7a4b
commit 40885f5760
11 changed files with 5 additions and 9 deletions

View File

@ -4,6 +4,9 @@
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="1"
android:targetSdkVersion="22" />
<application android:label="@string/app_name"
android:icon="@drawable/ic_launcher">

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.2 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.1 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.7 KiB

View File

@ -1,5 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">Keyboard 2.0</string>
<string name="lol">lol</string>
</resources>

View File

@ -1,10 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<input-method xmlns:android="http://schemas.android.com/apk/res/android"
android:supportsSwitchingToNextInputMethod="true">
<subtype
android:label="@string/lol"
android:icon="@drawable/ic_launcher"
android:imeSubtypeLocale="en_US"
android:imeSubtypeMode="keyboard"
/>
</input-method>

View File

@ -136,7 +136,7 @@ class KeyValue
new KeyValue("delete", "", CHAR_NONE, KeyEvent.KEYCODE_FORWARD_DEL, 0);
new KeyValue("insert", "Ins", CHAR_NONE, KeyEvent.KEYCODE_INSERT, 0);
new KeyValue("tab", "", '\t', EVENT_NONE, 0);
new KeyValue("space", " ", ' ', EVENT_NONE, 0);
new KeyValue("tab", "", '\t', KeyEvent.KEYCODE_TAB, 0);
new KeyValue("space", " ", ' ', KeyEvent.KEYCODE_SPACE, 0);
}
}

BIN
tmp/xxxhdpi.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.9 KiB