am 2edd109f: Some tweaks for Researcher Mode
* commit '2edd109f84cb85091b7cf81ec5c6be92bde129cb': Some tweaks for Researcher Modemain
commit
1cb45ca4ca
|
@ -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() {
|
||||||
|
|
|
@ -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)
|
||||||
|
|
|
@ -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);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue