diff options
Diffstat (limited to 'res')
-rw-r--r-- | res/drawable-hdpi/ic_launcher.png | bin | 0 -> 9397 bytes | |||
-rw-r--r-- | res/drawable-mdpi/ic_launcher.png | bin | 0 -> 5237 bytes | |||
-rw-r--r-- | res/drawable-xhdpi/ic_launcher.png | bin | 0 -> 14383 bytes | |||
-rw-r--r-- | res/layout/ime.xml | 20 | ||||
-rw-r--r-- | res/raw/gestures | bin | 0 -> 93080 bytes | |||
-rw-r--r-- | res/values-v11/styles.xml | 11 | ||||
-rw-r--r-- | res/values-v14/styles.xml | 12 | ||||
-rw-r--r-- | res/values/strings.xml | 7 | ||||
-rw-r--r-- | res/values/styles.xml | 20 | ||||
-rw-r--r-- | res/xml/method.xml | 2 |
10 files changed, 72 insertions, 0 deletions
diff --git a/res/drawable-hdpi/ic_launcher.png b/res/drawable-hdpi/ic_launcher.png Binary files differnew file mode 100644 index 0000000..96a442e --- /dev/null +++ b/res/drawable-hdpi/ic_launcher.png diff --git a/res/drawable-mdpi/ic_launcher.png b/res/drawable-mdpi/ic_launcher.png Binary files differnew file mode 100644 index 0000000..359047d --- /dev/null +++ b/res/drawable-mdpi/ic_launcher.png diff --git a/res/drawable-xhdpi/ic_launcher.png b/res/drawable-xhdpi/ic_launcher.png Binary files differnew file mode 100644 index 0000000..71c6d76 --- /dev/null +++ b/res/drawable-xhdpi/ic_launcher.png diff --git a/res/layout/ime.xml b/res/layout/ime.xml new file mode 100644 index 0000000..510d40a --- /dev/null +++ b/res/layout/ime.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<us.minak.IMEView xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="match_parent" + android:layout_height="match_parent"> + + <us.minak.DrawingSpaceView + android:id="@+id/drawing_space" + android:layout_width="wrap_content" + android:layout_height="200dp" + android:layout_centerInParent="true" + android:fadeDuration="300" + android:fadeEnabled="true" + android:fadeOffset="200" + android:gestureColor="#000" + android:gestureStrokeAngleThreshold="0.0" + android:gestureStrokeLengthThreshold="0.0" + android:gestureStrokeSquarenessThreshold="0.0" + android:gestureStrokeType="multiple" /> + +</us.minak.IMEView> diff --git a/res/raw/gestures b/res/raw/gestures Binary files differnew file mode 100644 index 0000000..3cc9d7c --- /dev/null +++ b/res/raw/gestures diff --git a/res/values-v11/styles.xml b/res/values-v11/styles.xml new file mode 100644 index 0000000..3c02242 --- /dev/null +++ b/res/values-v11/styles.xml @@ -0,0 +1,11 @@ +<resources> + + <!-- + Base application theme for API 11+. This theme completely replaces + AppBaseTheme from res/values/styles.xml on API 11+ devices. + --> + <style name="AppBaseTheme" parent="android:Theme.Holo.Light"> + <!-- API 11 theme customizations can go here. --> + </style> + +</resources> diff --git a/res/values-v14/styles.xml b/res/values-v14/styles.xml new file mode 100644 index 0000000..a91fd03 --- /dev/null +++ b/res/values-v14/styles.xml @@ -0,0 +1,12 @@ +<resources> + + <!-- + Base application theme for API 14+. This theme completely replaces + AppBaseTheme from BOTH res/values/styles.xml and + res/values-v11/styles.xml on API 14+ devices. + --> + <style name="AppBaseTheme" parent="android:Theme.Holo.Light.DarkActionBar"> + <!-- API 14 theme customizations can go here. --> + </style> + +</resources> diff --git a/res/values/strings.xml b/res/values/strings.xml new file mode 100644 index 0000000..2485e35 --- /dev/null +++ b/res/values/strings.xml @@ -0,0 +1,7 @@ +<resources xmlns:android="http://schemas.android.com/apk/res/android"> + + <string name="app_name">Minak</string> + <string name="minak_ime_label">Minak IME Label</string> + <string name="minak_settings_label">Minak Settings Label</string> + +</resources> diff --git a/res/values/styles.xml b/res/values/styles.xml new file mode 100644 index 0000000..6ce89c7 --- /dev/null +++ b/res/values/styles.xml @@ -0,0 +1,20 @@ +<resources> + + <!-- + Base application theme, dependent on API level. This theme is replaced + by AppBaseTheme from res/values-vXX/styles.xml on newer devices. + --> + <style name="AppBaseTheme" parent="android:Theme.Light"> + <!-- + Theme customizations available in newer API levels can go in + res/values-vXX/styles.xml, while customizations related to + backward-compatibility can go here. + --> + </style> + + <!-- Application theme. --> + <style name="AppTheme" parent="AppBaseTheme"> + <!-- All customizations that are NOT specific to a particular API-level can go here. --> + </style> + +</resources> diff --git a/res/xml/method.xml b/res/xml/method.xml new file mode 100644 index 0000000..b8d98ff --- /dev/null +++ b/res/xml/method.xml @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="utf-8"?> +<input-method xmlns:android="http://schemas.android.com/apk/res/android" />
\ No newline at end of file |