diff options
author | Luke Shumaker <shumakl@purdue.edu> | 2014-05-03 22:47:09 -0400 |
---|---|---|
committer | Luke Shumaker <shumakl@purdue.edu> | 2014-05-03 22:47:09 -0400 |
commit | 1a95ab399441cdf3e67d357df43f1ae1c3616ddd (patch) | |
tree | 34ee9067c2d092b56cfea64d4a7660119fc4e9f4 /res/layout |
initial commit
Diffstat (limited to 'res/layout')
-rw-r--r-- | res/layout/ime.xml | 20 |
1 files changed, 20 insertions, 0 deletions
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> |