Add icons + Nothing
@ -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">
|
||||
|
||||
|
Before Width: | Height: | Size: 9.2 KiB After Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 5.1 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 3.1 KiB |
BIN
res/drawable-xxhdpi/ic_launcher.png
Normal file
After Width: | Height: | Size: 5.1 KiB |
BIN
res/drawable-xxxhdpi/ic_launcher.png
Normal file
After Width: | Height: | Size: 7.7 KiB |
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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
After Width: | Height: | Size: 5.9 KiB |