diff options
author | nfoy <nfoy@purdue.edu> | 2014-05-06 22:24:45 -0400 |
---|---|---|
committer | nfoy <nfoy@purdue.edu> | 2014-05-06 22:24:45 -0400 |
commit | 32d8ef744b082aabee4fbb30aea616cff2c74c4b (patch) | |
tree | d265d0bcda45ef980e88092b83bfc46098c9e19f /res/layout/ime.xml | |
parent | 51d12bfbe37c6185d10c11e43ccb3289bd8a977a (diff) | |
parent | 44fa9b5b07062c165192a50fea4301e57d3424ba (diff) |
Merge branch 'master' of https://github.com/AndrewMurrell/minak
Diffstat (limited to 'res/layout/ime.xml')
-rw-r--r-- | res/layout/ime.xml | 49 |
1 files changed, 5 insertions, 44 deletions
diff --git a/res/layout/ime.xml b/res/layout/ime.xml index fc9e80d..83be9d2 100644 --- a/res/layout/ime.xml +++ b/res/layout/ime.xml @@ -3,60 +3,21 @@ android:layout_width="match_parent" android:layout_height="match_parent" > - <LinearLayout - android:id="@+id/left_panel" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_alignParentLeft="true" - android:orientation="vertical" > - - <Button - android:id="@+id/shift_btn" - android:text="@string/button_shift" - android:layout_width="85dp" - android:layout_height="85dp" - android:layout_marginBottom="10dp" - android:layout_marginTop="5dp" /> - </LinearLayout> - <us.minak.IMEGestureOverlayView android:id="@+id/drawing_space" - android:layout_width="wrap_content" + + android:layout_width="fill_parent" android:layout_height="200dp" android:layout_centerInParent="true" - android:layout_toLeftOf="@+id/right_panel" - android:layout_toRightOf="@+id/left_panel" + android:fadeDuration="300" android:fadeEnabled="true" android:fadeOffset="200" - android:gestureColor="#000" + + android:gestureColor="@color/gesture_color" android:gestureStrokeAngleThreshold="0.0" android:gestureStrokeLengthThreshold="0.0" android:gestureStrokeSquarenessThreshold="0.0" android:gestureStrokeType="multiple" /> - <LinearLayout - android:id="@+id/right_panel" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_alignParentRight="true" - android:orientation="vertical" > - - <Button - android:id="@+id/backspace_btn" - android:text="@string/button_backspace" - android:layout_width="85dp" - android:layout_height="85dp" - android:layout_marginBottom="5dp" - android:layout_marginTop="10dp" /> - - <Button - android:id="@+id/space_btn" - android:text="@string/button_space" - android:layout_width="85dp" - android:layout_height="85dp" - android:layout_marginBottom="10dp" - android:layout_marginTop="5dp" /> - </LinearLayout> - </us.minak.IMEView> |