summaryrefslogtreecommitdiff
path: root/src/com/android/stk/StkApp.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/stk/StkApp.java')
-rw-r--r--src/com/android/stk/StkApp.java8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/com/android/stk/StkApp.java b/src/com/android/stk/StkApp.java
index 0f0af52..4484493 100644
--- a/src/com/android/stk/StkApp.java
+++ b/src/com/android/stk/StkApp.java
@@ -32,8 +32,12 @@ abstract class StkApp extends Application {
static final int MENU_ID_BACK = android.view.Menu.FIRST + 1;
static final int MENU_ID_HELP = android.view.Menu.FIRST + 2;
- // UI timeout, 30 seconds - used for display dialog and activities.
- static final int UI_TIMEOUT = (40 * 1000);
+ // Display Text timeouts
+ static final int DISP_TEXT_CLEAR_AFTER_DELAY_TIMEOUT = (15 * 1000);
+ static final int DISP_TEXT_WAIT_FOR_USER_TIMEOUT = (60 * 1000);
+
+ // UI timeout, 30 seconds - used for menues and input
+ static final int UI_TIMEOUT = (30 * 1000);
// Tone default timeout - 2 seconds
static final int TONE_DFEAULT_TIMEOUT = (2 * 1000);