blob: 53f8fdfb108ff9efa9af70c7d6d83292a4672695 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
<?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.IMEGestureOverlayView
android:id="@+id/drawing_space"
android:layout_width="fill_parent"
android:layout_height="200dp"
android:layout_centerInParent="true"
android:fadeDuration="300"
android:fadeEnabled="true"
android:fadeOffset="200"
android:gestureColor="@color/gesture_color"
android:gestureStrokeAngleThreshold="0.0"
android:gestureStrokeLengthThreshold="0.0"
android:gestureStrokeSquarenessThreshold="0.0"
android:gestureStrokeType="multiple" />
<Button
android:id="@+id/backspace_btn"
android:text="@string/button_backspace"
android:layout_width="80dp"
android:layout_height="40dp"
android:layout_alignParentRight="true" />
</us.minak.IMEView>
|