HomeSort by relevance Sort by last modified time
    Searched full:resourceid (Results 176 - 200 of 417) sorted by null

1 2 3 4 5 6 78 91011>>

  /frameworks/ex/framesequence/samples/FrameSequenceSamples/src/com/android/framesequence/samples/
FrameSequenceTest.java 63 mResourceId = getIntent().getIntExtra("resourceId", R.raw.animated_gif);
  /frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/widget/adapter/
SimpleStringAdapter.java 61 mBackground = val.resourceId;
  /frameworks/support/v7/appcompat/src/android/support/v7/app/
ToolbarActionBar.java 538 if (outValue.resourceId != 0) {
539 widgetTheme.applyStyle(outValue.resourceId, true);
544 if (outValue.resourceId != 0) {
545 widgetTheme.applyStyle(outValue.resourceId, true);
AppCompatDelegateImplV9.java 391 if (outValue.resourceId != 0) {
392 themedContext = new ContextThemeWrapper(mContext, outValue.resourceId);
746 if (outValue.resourceId != 0) {
749 actionBarTheme.applyStyle(outValue.resourceId, true);
    [all...]
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/leanback/
MainFragment.java 220 protected void setDefaultBackground(int resourceId) {
221 mDefaultBackground = getResources().getDrawable(resourceId);
  /developers/samples/android/ui/window/DragAndDropAcrossApps/DragSource/src/main/java/com/example/android/dragsource/
DragSourceFragment.java 217 private void copyImageResourceToFile(int resourceId, File filePath) {
218 Bitmap image = BitmapFactory.decodeResource(getResources(), resourceId);
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/res/
ViewLoader.java 88 public View inflateView(Context context, int resourceId, View parent) {
89 return inflateView(context, resourceExtractor.getResourceName(resourceId), parent);
  /frameworks/base/core/java/com/android/internal/widget/
AbsActionBarView.java 78 && tv.resourceId != 0) {
79 mPopupContext = new ContextThemeWrapper(context, tv.resourceId);
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/graph/
UsageGraph.java 94 mDivider = context.getDrawable(v.resourceId);
95 mTintedDivider = context.getDrawable(v.resourceId);
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
StreamingTextView.java 98 private Bitmap getScaledBitmap(int resourceId, float scaled) {
99 Bitmap bitmap = BitmapFactory.decodeResource(getResources(), resourceId);
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
AbsActionBarView.java 65 && tv.resourceId != 0) {
66 mPopupContext = new ContextThemeWrapper(context, tv.resourceId);
ActivityChooserView.java 313 * @param resourceId The content description resource id.
315 public void setExpandActivityOverflowButtonContentDescription(int resourceId) {
316 CharSequence contentDescription = getContext().getString(resourceId);
493 * @param resourceId The resource id.
495 public void setDefaultActionButtonContentDescription(int resourceId) {
496 mDefaultActionButtonContentDescription = resourceId;
  /packages/apps/Dialer/src/com/android/dialer/calllog/
CallTypeIconsView.java 217 private Drawable getScaledBitmap(Context context, int resourceId) {
218 Bitmap icon = BitmapFactory.decodeResource(context.getResources(), resourceId);
  /packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/
ProfileOwnerProvisioningActivity.java 235 public void error(int resourceId, String logText) {
239 .setMessage(resourceId)
  /packages/services/Car/car-support-lib/src/android/support/car/app/
CarActivity.java 146 public void setContentView(@LayoutRes int resourceId) {
147 mProxy.setContentView(resourceId);
  /frameworks/base/core/java/android/widget/
ActivityChooserView.java 336 * @param resourceId The content description resource id.
338 public void setExpandActivityOverflowButtonContentDescription(@StringRes int resourceId) {
339 CharSequence contentDescription = mContext.getString(resourceId);
516 * @param resourceId The resource id.
518 public void setDefaultActionButtonContentDescription(@StringRes int resourceId) {
519 mDefaultActionButtonContentDescription = resourceId;
AdapterViewAnimator.java     [all...]
  /frameworks/base/docs/html/reference/android/support/test/espresso/matcher/
PreferenceMatchers.html 384 <a href="/reference/android/support/test/espresso/matcher/PreferenceMatchers.html#withSummary(int)">withSummary</a>(int resourceId)
450 <a href="/reference/android/support/test/espresso/matcher/PreferenceMatchers.html#withTitle(int)">withTitle</a>(int resourceId)
931 Matcher&lt;Preference&gt; withSummary (int resourceId)</pre>
940 <td><code>resourceId</code></td>
1042 Matcher&lt;Preference&gt; withTitle (int resourceId)</pre>
1051 <td><code>resourceId</code></td>
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
DictionaryInfoUtils.java 382 int resourceId = getMainDictionaryResourceIdIfAvailableForLocale(res, locale);
383 if (0 != resourceId) {
384 return resourceId;
548 final int resourceId =
551 if (0 == resourceId) {
555 BinaryDictionaryGetter.loadFallbackResource(context, resourceId);
  /frameworks/base/core/java/android/util/
TypedValue.java 185 public int resourceId;
497 resourceId = other.resourceId;
512 if (resourceId != 0) {
513 sb.append(" r=0x").append(Integer.toHexString(resourceId));
  /frameworks/base/services/core/java/com/android/server/display/
ColorFade.java 191 private String readFile(Context context, int resourceId) {
193 InputStream stream = context.getResources().openRawResource(resourceId);
197 Slog.e(TAG, "Unrecognized shader " + Integer.toString(resourceId));
202 private int loadShader(Context context, int resourceId, int type) {
203 String source = readFile(context, resourceId);
  /frameworks/base/core/java/android/appwidget/
AppWidgetProviderInfo.java 364 private Drawable loadDrawable(Context context, int density, int resourceId,
369 if (resourceId > 0) {
373 return resources.getDrawableForDensity(resourceId, density);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
StatusBarIconController.java 220 public void setIcon(String slot, int resourceId, CharSequence contentDescription) {
225 Icon.createWithResource(mContext, resourceId), 0, 0, contentDescription);
228 icon.icon = Icon.createWithResource(mContext, resourceId);
  /external/glide/library/src/main/java/com/bumptech/glide/
GenericRequestBuilder.java 422 * @param resourceId The id of the resource to use as a placeholder
426 int resourceId) {
427 this.placeholderId = resourceId;
448 * @param resourceId The id of the resource to use as a placeholder.
452 int resourceId) {
453 this.errorId = resourceId;
  /cts/tests/tests/content/src/android/content/cts/
ContextTest.java 348 private AttributeSet getAttributeSet(int resourceId) {
350 resourceId);

Completed in 1901 milliseconds

1 2 3 4 5 6 78 91011>>