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.java301 private static String getKey(TypedArray styledAttributes) { in getKey() argument
302 return styledAttributes.getString(com.android.internal.R.styleable.Preference_key); in getKey()
305 private static String getTitle(TypedArray styledAttributes) { in getTitle() argument
306 return styledAttributes.getString(com.android.internal.R.styleable.Preference_title); in getTitle()
309 private static String getSummary(TypedArray styledAttributes) { in getSummary() argument
310 return styledAttributes.getString(com.android.internal.R.styleable.Preference_summary); in getSummary()
313 private static String getController(TypedArray styledAttributes) { in getController() argument
314 return styledAttributes.getString(R.styleable.Preference_controller); in getController()
317 private static int getIcon(TypedArray styledAttributes) { in getIcon() argument
318 return styledAttributes.getResourceId(com.android.internal.R.styleable.Icon_icon, 0); in getIcon()
[all …]
/packages/apps/Car/Settings/src/com/android/car/settings/common/
DPreferenceXmlParser.java140 private static String getKey(TypedArray styledAttributes) { in getKey() argument
141 return styledAttributes.getString(com.android.internal.R.styleable.Preference_key); in getKey()
144 private static String getController(TypedArray styledAttributes) { in getController() argument
145 return styledAttributes.getString(R.styleable.Preference_controller); in getController()
148 private static boolean isSearchable(TypedArray styledAttributes) { in isSearchable() argument
149 return styledAttributes.getBoolean(R.styleable.Preference_searchable, true); in isSearchable()
/packages/apps/Car/libs/car-ui-lib/car-ui-lib/src/main/java/com/android/car/ui/recyclerview/
DCarUiRecyclerViewImpl.java352 private void initRotaryScroll(@Nullable TypedArray styledAttributes) { in initRotaryScroll() argument
353 boolean rotaryScrollEnabled = styledAttributes != null && styledAttributes.getBoolean( in initRotaryScroll()
356 int orientation = styledAttributes in initRotaryScroll()