OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:profilepref
(Results
1 - 1
of
1
) sorted by null
/packages/apps/Settings/src/com/android/settings/bluetooth/
DeviceProfilesSettings.java
309
CheckBoxPreference
profilePref
= (CheckBoxPreference)findPreference(profile.toString());
310
if (
profilePref
== null) {
311
profilePref
= createProfilePreference(profile);
312
mProfileContainer.addPreference(
profilePref
);
314
refreshProfilePreference(
profilePref
, profile);
318
Preference
profilePref
= findPreference(profile.toString());
319
if (
profilePref
!= null) {
321
mProfileContainer.removePreference(
profilePref
);
327
private void refreshProfilePreference(CheckBoxPreference
profilePref
,
334
profilePref
.setEnabled(!mCachedDevice.isBusy())
[
all
...]
Completed in 43 milliseconds