Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
halo
frameworks_opt_telephony
Commits
4138d4a9
Commit
4138d4a9
authored
9 years ago
by
Jack Yu
Committed by
Android (Google) Code Review
9 years ago
Browse files
Options
Download
Plain Diff
Merge "Fixed the incorrect operator name displayed when roaming." into mnc-dev
parents
6b8e1174
27d3077d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
src/java/com/android/internal/telephony/cdma/CdmaLteServiceStateTracker.java
...d/internal/telephony/cdma/CdmaLteServiceStateTracker.java
+4
-2
No files found.
src/java/com/android/internal/telephony/cdma/CdmaLteServiceStateTracker.java
View file @
4138d4a9
...
...
@@ -460,9 +460,11 @@ public class CdmaLteServiceStateTracker extends CdmaServiceStateTracker {
}
if
(
mUiccApplcation
!=
null
&&
mUiccApplcation
.
getState
()
==
AppState
.
APPSTATE_READY
&&
mIccRecords
!=
null
&&
(
mSS
.
getVoiceRegState
()
==
ServiceState
.
STATE_IN_SERVICE
))
{
mIccRecords
!=
null
&&
(
mSS
.
getVoiceRegState
()
==
ServiceState
.
STATE_IN_SERVICE
)
&&
mSS
.
getRilVoiceRadioTechnology
()
!=
ServiceState
.
RIL_RADIO_TECHNOLOGY_LTE
)
{
// SIM is found on the device. If ERI roaming is OFF, and SID/NID matches
// one configured in SIM, use operator name from CSIM record.
// one configured in SIM, use operator name from CSIM record. Note that ERI, SID,
// and NID are CDMA only, not applicable to LTE.
boolean
showSpn
=
((
RuimRecords
)
mIccRecords
).
getCsimSpnDisplayCondition
();
int
iconIndex
=
mSS
.
getCdmaEriIconIndex
();
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment