summaryrefslogtreecommitdiff
path: root/res/layout/ime.xml
diff options
context:
space:
mode:
Diffstat (limited to 'res/layout/ime.xml')
-rw-r--r--res/layout/ime.xml46
1 files changed, 46 insertions, 0 deletions
diff --git a/res/layout/ime.xml b/res/layout/ime.xml
index 7ef50a1..ddabd0c 100644
--- a/res/layout/ime.xml
+++ b/res/layout/ime.xml
@@ -3,11 +3,35 @@
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/symbols_btn"
+ android:layout_width="85dp"
+ android:layout_height="85dp"
+ android:layout_marginBottom="5dp"
+ android:layout_marginTop="10dp" />
+
+ <Button
+ android:id="@+id/shift_btn"
+ 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_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"
@@ -17,4 +41,26 @@
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:layout_width="85dp"
+ android:layout_height="85dp"
+ android:layout_marginBottom="5dp"
+ android:layout_marginTop="10dp" />
+
+ <Button
+ android:id="@+id/space_btn"
+ android:layout_width="85dp"
+ android:layout_height="85dp"
+ android:layout_marginBottom="10dp"
+ android:layout_marginTop="5dp" />
+ </LinearLayout>
+
</us.minak.IMEView>