diff options
-rw-r--r-- | res/layout/ime.xml | 3 | ||||
-rw-r--r-- | res/values/strings.xml | 5 |
2 files changed, 8 insertions, 0 deletions
diff --git a/res/layout/ime.xml b/res/layout/ime.xml index 26f5ed1..fc9e80d 100644 --- a/res/layout/ime.xml +++ b/res/layout/ime.xml @@ -12,6 +12,7 @@ <Button android:id="@+id/shift_btn" + android:text="@string/button_shift" android:layout_width="85dp" android:layout_height="85dp" android:layout_marginBottom="10dp" @@ -43,6 +44,7 @@ <Button android:id="@+id/backspace_btn" + android:text="@string/button_backspace" android:layout_width="85dp" android:layout_height="85dp" android:layout_marginBottom="5dp" @@ -50,6 +52,7 @@ <Button android:id="@+id/space_btn" + android:text="@string/button_space" android:layout_width="85dp" android:layout_height="85dp" android:layout_marginBottom="10dp" diff --git a/res/values/strings.xml b/res/values/strings.xml index b3e2dd3..256a9b8 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -36,4 +36,9 @@ <!-- Message, displayed when the sdcard cannot be found, 1st parameter is the name of the file that stores the gestures. CHAR LIMIT=80 --> <string name="gestures_error_loading">Could not load %s. Make sure you have storage available.</string> + <!-- Temporary labels for buttons --> + <string name="button_shift">Shift</string> + <string name="button_backspace">Backspace</string> + <string name="button_space">Space</string> + </resources> |