OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:newValueString
(Results
1 - 2
of
2
) sorted by null
/packages/apps/Settings/src/com/android/settings/development/
BluetoothMaxConnectedAudioDevicesPreferenceController.java
64
String
newValueString
= newValue.toString();
66
if (listPreference.findIndexOfValue(
newValueString
) <= 0) {
68
newValueString
= "";
70
SystemProperties.set(MAX_CONNECTED_AUDIO_DEVICES_PROPERTY,
newValueString
);
/packages/apps/Settings/src/com/android/settings/nfc/
NfcForegroundPreference.java
60
String
newValueString
= (String) newValue;
61
setSummary(getEntries()[findIndexOfValue(
newValueString
)]);
62
mPaymentBackend.setForegroundMode(Integer.parseInt(
newValueString
) != 0);
Completed in 651 milliseconds