HomeSort by relevance Sort by last modified time
    Searched defs:outValue (Results 1 - 25 of 91) sorted by null

1 2 3 4

  /packages/apps/Contacts/src/com/android/contacts/util/
ThemeUtils.java 30 final TypedValue outValue = new TypedValue();
31 theme.resolveAttribute(attrId, outValue, true);
32 return outValue.resourceId;
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
IconUtils.java 277 final TypedValue outValue = new TypedValue();
278 context.getTheme().resolveAttribute(tintAttrId, outValue, true);
279 return applyTintColor(context, drawableId, outValue.resourceId);
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
ScrollBarView.java 43 TypedValue outValue = new TypedValue();
45 android.R.attr.scrollbarThumbHorizontal, outValue, true);
47 context, outValue.resourceId);
  /frameworks/base/core/java/android/app/
Presentation.java 298 TypedValue outValue = new TypedValue();
300 com.android.internal.R.attr.presentationTheme, outValue, true);
301 theme = outValue.resourceId;
TimePickerDialog.java 82 final TypedValue outValue = new TypedValue();
83 context.getTheme().resolveAttribute(R.attr.timePickerDialogTheme, outValue, true);
84 return outValue.resourceId;
AlertDialog.java 153 TypedValue outValue = new TypedValue();
155 outValue, true);
156 return outValue.resourceId;
    [all...]
DatePickerDialog.java 87 final TypedValue outValue = new TypedValue();
88 context.getTheme().resolveAttribute(R.attr.datePickerDialogTheme, outValue, true);
89 return outValue.resourceId;
  /packages/apps/Settings/src/com/android/settings/quicklaunch/
ShortcutPreference.java 59 TypedValue outValue = new TypedValue();
60 context.getTheme().resolveAttribute(android.R.attr.disabledAlpha, outValue, true);
61 sDimAlpha = (int) (outValue.getFloat() * 255);
  /cts/tests/tests/view/src/android/view/cts/
LayoutInflaterTest.java 376 TypedValue outValue = new TypedValue();
380 boolean resolved = theme.resolveAttribute(R.attr.themeType, outValue, true);
382 assertEquals(tag + " has themeType " + type, type, outValue.data);
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
HeadersFragment.java 232 TypedValue outValue = new TypedValue();
233 getActivity().getTheme().resolveAttribute(R.attr.defaultBrandColor, outValue, true);
234 return getResources().getColor(outValue.resourceId);
  /packages/apps/Settings/src/com/android/settings/bluetooth/
BluetoothDevicePreference.java 63 TypedValue outValue = new TypedValue();
64 context.getTheme().resolveAttribute(android.R.attr.disabledAlpha, outValue, true);
65 sDimAlpha = (int) (outValue.getFloat() * 255);
  /developers/build/prebuilts/gradle/AdapterTransition/Application/src/main/java/com/example/android/common/view/
SlidingTabLayout.java 180 TypedValue outValue = new TypedValue();
182 outValue, true);
183 textView.setBackgroundResource(outValue.resourceId);
SlidingTabStrip.java 67 TypedValue outValue = new TypedValue();
68 context.getTheme().resolveAttribute(R.attr.colorForeground, outValue, true);
69 final int themeForegroundColor = outValue.data;
  /developers/build/prebuilts/gradle/BasicTransition/Application/src/main/java/com/example/android/common/view/
SlidingTabLayout.java 180 TypedValue outValue = new TypedValue();
182 outValue, true);
183 textView.setBackgroundResource(outValue.resourceId);
SlidingTabStrip.java 67 TypedValue outValue = new TypedValue();
68 context.getTheme().resolveAttribute(R.attr.colorForeground, outValue, true);
69 final int themeForegroundColor = outValue.data;
  /developers/build/prebuilts/gradle/FragmentTransition/Application/src/main/java/com/example/android/common/view/
SlidingTabLayout.java 180 TypedValue outValue = new TypedValue();
182 outValue, true);
183 textView.setBackgroundResource(outValue.resourceId);
SlidingTabStrip.java 67 TypedValue outValue = new TypedValue();
68 context.getTheme().resolveAttribute(R.attr.colorForeground, outValue, true);
69 final int themeForegroundColor = outValue.data;
  /developers/build/prebuilts/gradle/SlidingTabsBasic/Application/src/main/java/com/example/android/common/view/
SlidingTabLayout.java 180 TypedValue outValue = new TypedValue();
182 outValue, true);
183 textView.setBackgroundResource(outValue.resourceId);
SlidingTabStrip.java 67 TypedValue outValue = new TypedValue();
68 context.getTheme().resolveAttribute(R.attr.colorForeground, outValue, true);
69 final int themeForegroundColor = outValue.data;
  /developers/build/prebuilts/gradle/SlidingTabsColors/Application/src/main/java/com/example/android/common/view/
SlidingTabLayout.java 180 TypedValue outValue = new TypedValue();
182 outValue, true);
183 textView.setBackgroundResource(outValue.resourceId);
SlidingTabStrip.java 67 TypedValue outValue = new TypedValue();
68 context.getTheme().resolveAttribute(R.attr.colorForeground, outValue, true);
69 final int themeForegroundColor = outValue.data;
  /developers/build/prebuilts/gradle/SwipeRefreshLayoutBasic/Application/src/main/java/com/example/android/common/view/
SlidingTabLayout.java 180 TypedValue outValue = new TypedValue();
182 outValue, true);
183 textView.setBackgroundResource(outValue.resourceId);
SlidingTabStrip.java 67 TypedValue outValue = new TypedValue();
68 context.getTheme().resolveAttribute(R.attr.colorForeground, outValue, true);
69 final int themeForegroundColor = outValue.data;
  /developers/build/prebuilts/gradle/SwipeRefreshListFragment/Application/src/main/java/com/example/android/common/view/
SlidingTabLayout.java 180 TypedValue outValue = new TypedValue();
182 outValue, true);
183 textView.setBackgroundResource(outValue.resourceId);
SlidingTabStrip.java 67 TypedValue outValue = new TypedValue();
68 context.getTheme().resolveAttribute(R.attr.colorForeground, outValue, true);
69 final int themeForegroundColor = outValue.data;

Completed in 892 milliseconds

1 2 3 4