Home
last modified time | relevance | path

Searched refs:styledAttributes (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Settings/src/com/android/settings/core/
DPreferenceXmlParserUtils.java217 private static String getKey(TypedArray styledAttributes) { in getKey() argument
218 return styledAttributes.getString(com.android.internal.R.styleable.Preference_key); in getKey()
221 private static String getTitle(TypedArray styledAttributes) { in getTitle() argument
222 return styledAttributes.getString(com.android.internal.R.styleable.Preference_title); in getTitle()
225 private static String getSummary(TypedArray styledAttributes) { in getSummary() argument
226 return styledAttributes.getString(com.android.internal.R.styleable.Preference_summary); in getSummary()
229 private static String getController(TypedArray styledAttributes) { in getController() argument
230 return styledAttributes.getString(R.styleable.Preference_controller); in getController()
233 private static String getHighlightableMenuKey(TypedArray styledAttributes) { in getHighlightableMenuKey() argument
234 return styledAttributes.getString(R.styleable.Preference_highlightableMenuKey); in getHighlightableMenuKey()
[all …]
/packages/apps/Car/Settings/src/com/android/car/settings/common/
DPreferenceXmlParser.java183 private static String getKey(TypedArray styledAttributes) { in getKey() argument
184 return styledAttributes.getString(com.android.internal.R.styleable.Preference_key); in getKey()
187 private static String getController(TypedArray styledAttributes) { in getController() argument
188 return styledAttributes.getString(R.styleable.Preference_controller); in getController()
191 private static boolean isSearchable(TypedArray styledAttributes) { in isSearchable() argument
192 return styledAttributes.getBoolean(R.styleable.Preference_searchable, true); in isSearchable()
195 private static String getDriver(TypedArray styledAttributes) { in getDriver() argument
196 return styledAttributes.getString(R.styleable.Preference_occupant_driver); in getDriver()
199 private static String getFrontPassenger(TypedArray styledAttributes) { in getFrontPassenger() argument
200 return styledAttributes.getString(R.styleable.Preference_occupant_front_passenger); in getFrontPassenger()
[all …]
/packages/modules/Permission/PermissionController/src/com/android/permissioncontroller/safetycenter/ui/view/
DSafetyEntryCommonViewsManager.kt100 val styledAttributes = in getDisabledAlpha() constant
103 return styledAttributes.getFloat(0, DEFAULT_DISABLED_ALPHA) in getDisabledAlpha()
105 styledAttributes.recycle() in getDisabledAlpha()