diff options
author | 2012-08-14 11:08:17 -0700 | |
---|---|---|
committer | 2012-12-19 18:26:07 -0800 | |
commit | c572c20cd820e148080cd93225681803c12ec167 (patch) | |
tree | 5bb008bd7159c5f5af7a6aa6f2232fd5d1e60a6b /java/src | |
parent | cff28c5d5db3e0c3e97149519a3f705150aeb224 (diff) | |
download | latinime-c572c20cd820e148080cd93225681803c12ec167.tar.gz latinime-c572c20cd820e148080cd93225681803c12ec167.tar.xz latinime-c572c20cd820e148080cd93225681803c12ec167.zip |
[Rlog8] Show red border if logging everything
Change-Id: I5a3f21cef7d93128661b11b60eac7d84b8110e47
Diffstat (limited to 'java/src')
-rw-r--r-- | java/src/com/android/inputmethod/research/ResearchLogger.java | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/research/ResearchLogger.java b/java/src/com/android/inputmethod/research/ResearchLogger.java index 38c30017d..efc7bcf0c 100644 --- a/java/src/com/android/inputmethod/research/ResearchLogger.java +++ b/java/src/com/android/inputmethod/research/ResearchLogger.java @@ -94,8 +94,12 @@ public class ResearchLogger implements SharedPreferences.OnSharedPreferenceChang private static final String FILENAME_SUFFIX = ".txt"; private static final SimpleDateFormat TIMESTAMP_DATEFORMAT = new SimpleDateFormat("yyyyMMddHHmmssS", Locale.US); + // Whether to show an indicator on the screen that logging is on. Currently a very small red + // dot in the lower right hand corner. Most users should not notice it. private static final boolean IS_SHOWING_INDICATOR = true; - private static final boolean IS_SHOWING_INDICATOR_CLEARLY = false; + // Change the default indicator to something very visible. Currently two red vertical bars on + // either side of they keyboard. + private static final boolean IS_SHOWING_INDICATOR_CLEARLY = false || LOG_EVERYTHING; public static final int FEEDBACK_WORD_BUFFER_SIZE = 5; // constants related to specific log points |