Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LatinIME
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
keyboard
LatinIME
Commits
0fe3611b
Commit
0fe3611b
authored
13 years ago
by
Jean Chalard
Browse files
Options
Downloads
Patches
Plain Diff
Resolve TODOs: add some members to store prefs
Change-Id: Idf09cb5d801e8008eb63cbb5138058faeb7db136
parent
85b063f9
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
java/src/com/android/inputmethod/latin/LatinIME.java
+2
-3
2 additions, 3 deletions
java/src/com/android/inputmethod/latin/LatinIME.java
java/src/com/android/inputmethod/latin/SettingsValues.java
+19
-8
19 additions, 8 deletions
java/src/com/android/inputmethod/latin/SettingsValues.java
with
21 additions
and
11 deletions
java/src/com/android/inputmethod/latin/LatinIME.java
+
2
−
3
View file @
0fe3611b
...
@@ -144,6 +144,7 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar
...
@@ -144,6 +144,7 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar
*/
*/
private
static
final
String
SCHEME_PACKAGE
=
"package"
;
private
static
final
String
SCHEME_PACKAGE
=
"package"
;
// TODO: migrate this to SettingsValues
private
int
mSuggestionVisibility
;
private
int
mSuggestionVisibility
;
private
static
final
int
SUGGESTION_VISIBILILTY_SHOW_VALUE
private
static
final
int
SUGGESTION_VISIBILILTY_SHOW_VALUE
=
R
.
string
.
prefs_suggestion_visibility_show_value
;
=
R
.
string
.
prefs_suggestion_visibility_show_value
;
...
@@ -2389,9 +2390,7 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar
...
@@ -2389,9 +2390,7 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar
}
}
private
void
updateSuggestionVisibility
(
final
SharedPreferences
prefs
,
final
Resources
res
)
{
private
void
updateSuggestionVisibility
(
final
SharedPreferences
prefs
,
final
Resources
res
)
{
final
String
suggestionVisiblityStr
=
prefs
.
getString
(
final
String
suggestionVisiblityStr
=
mSettingsValues
.
mShowSuggestionsSetting
;
Settings
.
PREF_SHOW_SUGGESTIONS_SETTING
,
res
.
getString
(
R
.
string
.
prefs_suggestion_visibility_default_value
));
for
(
int
visibility
:
SUGGESTION_VISIBILITY_VALUE_ARRAY
)
{
for
(
int
visibility
:
SUGGESTION_VISIBILITY_VALUE_ARRAY
)
{
if
(
suggestionVisiblityStr
.
equals
(
res
.
getString
(
visibility
)))
{
if
(
suggestionVisiblityStr
.
equals
(
res
.
getString
(
visibility
)))
{
mSuggestionVisibility
=
visibility
;
mSuggestionVisibility
=
visibility
;
...
...
This diff is collapsed.
Click to expand it.
java/src/com/android/inputmethod/latin/SettingsValues.java
+
19
−
8
View file @
0fe3611b
...
@@ -50,9 +50,9 @@ public class SettingsValues {
...
@@ -50,9 +50,9 @@ public class SettingsValues {
private
final
boolean
mShowSettingsKey
;
private
final
boolean
mShowSettingsKey
;
private
final
String
mVoiceMode
;
private
final
String
mVoiceMode
;
private
final
String
mAutoCorrectionThresholdRawValue
;
private
final
String
mAutoCorrectionThresholdRawValue
;
// TODO: add a member for the raw "s
how
_s
uggestions
_s
etting
" setting
public
final
String
mS
how
S
uggestions
S
etting
;
// TODO: add a member for the raw "u
sability
_s
tudy
_m
ode
" setting
private
final
boolean
mU
sability
S
tudy
M
ode
;
// TODO: add a member for the raw "pref_key_p
review
_p
opup
_d
ismiss
_d
elay
" setting
private
final
String
mKeyP
review
P
opup
D
ismiss
D
elay
RawValue
;
public
final
boolean
mUseContactsDict
;
public
final
boolean
mUseContactsDict
;
// Suggestion: use bigrams to adjust scores of suggestions obtained from unigram dictionary
// Suggestion: use bigrams to adjust scores of suggestions obtained from unigram dictionary
public
final
boolean
mBigramSuggestionEnabled
;
public
final
boolean
mBigramSuggestionEnabled
;
...
@@ -107,8 +107,14 @@ public class SettingsValues {
...
@@ -107,8 +107,14 @@ public class SettingsValues {
mVoiceMode
=
prefs
.
getString
(
Settings
.
PREF_VOICE_MODE
,
voiceModeMain
);
mVoiceMode
=
prefs
.
getString
(
Settings
.
PREF_VOICE_MODE
,
voiceModeMain
);
mAutoCorrectionThresholdRawValue
=
prefs
.
getString
(
Settings
.
PREF_AUTO_CORRECTION_THRESHOLD
,
mAutoCorrectionThresholdRawValue
=
prefs
.
getString
(
Settings
.
PREF_AUTO_CORRECTION_THRESHOLD
,
res
.
getString
(
R
.
string
.
auto_correction_threshold_mode_index_modest
));
res
.
getString
(
R
.
string
.
auto_correction_threshold_mode_index_modest
));
mShowSuggestionsSetting
=
prefs
.
getString
(
Settings
.
PREF_SHOW_SUGGESTIONS_SETTING
,
res
.
getString
(
R
.
string
.
prefs_suggestion_visibility_default_value
));
mUsabilityStudyMode
=
getUsabilityStudyMode
(
prefs
,
res
);
mKeyPreviewPopupDismissDelayRawValue
=
prefs
.
getString
(
Settings
.
PREF_KEY_PREVIEW_POPUP_DISMISS_DELAY
,
Integer
.
toString
(
res
.
getInteger
(
R
.
integer
.
config_delay_after_preview
)));
mUseContactsDict
=
prefs
.
getBoolean
(
Settings
.
PREF_KEY_USE_CONTACTS_DICT
,
true
);
mUseContactsDict
=
prefs
.
getBoolean
(
Settings
.
PREF_KEY_USE_CONTACTS_DICT
,
true
);
mAutoCorrectEnabled
=
isAutoCorrectEnabled
(
prefs
,
res
);
mAutoCorrectEnabled
=
isAutoCorrectEnabled
(
prefs
,
res
,
mAutoCorrectionThresholdRawValue
);
mBigramSuggestionEnabled
=
mAutoCorrectEnabled
mBigramSuggestionEnabled
=
mAutoCorrectEnabled
&&
isBigramSuggestionEnabled
(
prefs
,
res
,
mAutoCorrectEnabled
);
&&
isBigramSuggestionEnabled
(
prefs
,
res
,
mAutoCorrectEnabled
);
mBigramPredictionEnabled
=
mBigramSuggestionEnabled
mBigramPredictionEnabled
=
mBigramSuggestionEnabled
...
@@ -191,10 +197,8 @@ public class SettingsValues {
...
@@ -191,10 +197,8 @@ public class SettingsValues {
return
mMagicSpaceSwappers
.
contains
(
String
.
valueOf
((
char
)
code
));
return
mMagicSpaceSwappers
.
contains
(
String
.
valueOf
((
char
)
code
));
}
}
private
static
boolean
isAutoCorrectEnabled
(
SharedPreferences
sp
,
Resources
resources
)
{
private
static
boolean
isAutoCorrectEnabled
(
final
SharedPreferences
sp
,
final
String
currentAutoCorrectionSetting
=
sp
.
getString
(
final
Resources
resources
,
final
String
currentAutoCorrectionSetting
)
{
Settings
.
PREF_AUTO_CORRECTION_THRESHOLD
,
resources
.
getString
(
R
.
string
.
auto_correction_threshold_mode_index_modest
));
final
String
autoCorrectionOff
=
resources
.
getString
(
final
String
autoCorrectionOff
=
resources
.
getString
(
R
.
string
.
auto_correction_threshold_mode_index_off
);
R
.
string
.
auto_correction_threshold_mode_index_off
);
return
!
currentAutoCorrectionSetting
.
equals
(
autoCorrectionOff
);
return
!
currentAutoCorrectionSetting
.
equals
(
autoCorrectionOff
);
...
@@ -213,6 +217,7 @@ public class SettingsValues {
...
@@ -213,6 +217,7 @@ public class SettingsValues {
// Likewise
// Likewise
public
static
int
getKeyPreviewPopupDismissDelay
(
SharedPreferences
sp
,
public
static
int
getKeyPreviewPopupDismissDelay
(
SharedPreferences
sp
,
Resources
resources
)
{
Resources
resources
)
{
// TODO: use mKeyPreviewPopupDismissDelayRawValue instead of reading it again here.
return
Integer
.
parseInt
(
sp
.
getString
(
Settings
.
PREF_KEY_PREVIEW_POPUP_DISMISS_DELAY
,
return
Integer
.
parseInt
(
sp
.
getString
(
Settings
.
PREF_KEY_PREVIEW_POPUP_DISMISS_DELAY
,
Integer
.
toString
(
resources
.
getInteger
(
R
.
integer
.
config_delay_after_preview
))));
Integer
.
toString
(
resources
.
getInteger
(
R
.
integer
.
config_delay_after_preview
))));
}
}
...
@@ -307,4 +312,10 @@ public class SettingsValues {
...
@@ -307,4 +312,10 @@ public class SettingsValues {
}
}
return
-
1
;
return
-
1
;
}
}
// Likewise
public
static
boolean
getUsabilityStudyMode
(
final
SharedPreferences
prefs
,
final
Resources
res
)
{
return
prefs
.
getBoolean
(
Settings
.
PREF_USABILITY_STUDY_MODE
,
true
);
}
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment