am 2edd109f: Some tweaks for Researcher Mode

* commit '2edd109f84cb85091b7cf81ec5c6be92bde129cb':
  Some tweaks for Researcher Mode
main
Ken Wakasa 2011-12-09 11:00:58 -08:00 committed by Android Git Automerger
commit 1cb45ca4ca
3 changed files with 10 additions and 4 deletions

View File

@ -33,7 +33,7 @@ public class LatinImeLogger implements SharedPreferences.OnSharedPreferenceChang
public void onSharedPreferenceChanged(SharedPreferences sharedPreferences, String key) { public void onSharedPreferenceChanged(SharedPreferences sharedPreferences, String key) {
} }
public static void init(Context context, SharedPreferences prefs) { public static void init(LatinIME context, SharedPreferences prefs) {
} }
public static void commit() { public static void commit() {

View File

@ -237,6 +237,7 @@ public class Settings extends InputMethodSettingsActivity
textCorrectionGroup.removePreference(dictionaryLink); textCorrectionGroup.removePreference(dictionaryLink);
} }
// TODO: Following isResearcherPackage can be wrong until LatinImeLogger gets initialized.
final boolean isResearcherPackage = LatinImeLogger.isResearcherPackage(); final boolean isResearcherPackage = LatinImeLogger.isResearcherPackage();
final boolean showUsabilityStudyModeOption = final boolean showUsabilityStudyModeOption =
res.getBoolean(R.bool.config_enable_usability_study_mode_option) res.getBoolean(R.bool.config_enable_usability_study_mode_option)

View File

@ -537,6 +537,10 @@ public class Utils {
mLoggingHandler.post(new Runnable() { mLoggingHandler.post(new Runnable() {
@Override @Override
public void run() { public void run() {
final Date date = new Date();
date.setTime(System.currentTimeMillis());
final String currentDateTimeString =
new SimpleDateFormat("yyyyMMdd-HHmmssZ").format(date);
if (mFile == null) { if (mFile == null) {
Log.w(TAG, "No internal log file found."); Log.w(TAG, "No internal log file found.");
return; return;
@ -548,8 +552,8 @@ public class Utils {
return; return;
} }
mWriter.flush(); mWriter.flush();
final String destPath = final String destPath = Environment.getExternalStorageDirectory()
Environment.getExternalStorageDirectory() + "/" + FILENAME; + "/research-" + currentDateTimeString + ".log";
final File destFile = new File(destPath); final File destFile = new File(destPath);
try { try {
final FileChannel src = (new FileInputStream(mFile)).getChannel(); final FileChannel src = (new FileInputStream(mFile)).getChannel();
@ -575,7 +579,8 @@ public class Utils {
} }
intent.setType("text/plain"); intent.setType("text/plain");
intent.putExtra(Intent.EXTRA_STREAM, Uri.parse("file://" + destPath)); intent.putExtra(Intent.EXTRA_STREAM, Uri.parse("file://" + destPath));
intent.putExtra(Intent.EXTRA_SUBJECT, "[Research Logs]"); intent.putExtra(Intent.EXTRA_SUBJECT,
"[Research Logs] " + currentDateTimeString);
mIms.startActivity(intent); mIms.startActivity(intent);
} }
}); });