OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:colorRes
(Results
1 - 5
of
5
) sorted by null
/packages/apps/Settings/src/com/android/settings/deviceinfo/
StorageItemPreference.java
33
public StorageItemPreference(Context context, int titleRes, int
colorRes
) {
34
this(context, context.getText(titleRes),
colorRes
, UserHandle.USER_NULL);
38
Context context, CharSequence title, int
colorRes
, int userHandle) {
41
if (
colorRes
!= 0) {
42
this.color = context.getResources().getColor(
colorRes
);
StorageVolumePreferenceCategory.java
134
private StorageItemPreference buildItem(int titleRes, int
colorRes
) {
135
return new StorageItemPreference(getContext(), titleRes,
colorRes
);
189
final int
colorRes
= count++ % 2 == 0 ? R.color.memory_user_light
192
getContext(), info.name,
colorRes
, info.id);
/frameworks/base/core/java/android/content/res/
ColorStateList.java
197
int
colorRes
= 0;
209
colorRes
= attrs.getAttributeResourceValue(i, 0);
211
if (
colorRes
== 0) {
223
if (
colorRes
!= 0) {
224
color = r.getColor(
colorRes
);
StringBlock.java
329
int
colorRes
= res.getIdentifier(name, "color", "android");
330
if (
colorRes
!= 0) {
331
ColorStateList colors = res.getColorStateList(
colorRes
);
/frameworks/base/core/java/android/text/
Html.java
676
int
colorRes
= res.getIdentifier(name, "color", "android");
677
if (
colorRes
!= 0) {
678
ColorStateList colors = res.getColorStateList(
colorRes
);
Completed in 96 milliseconds