HomeSort by relevance Sort by last modified time
    Searched full:resid (Results 351 - 375 of 482) sorted by null

<<11121314151617181920

  /frameworks/support/v4/java/android/support/v4/app/
ShareCompat.java 404 * @param resId Resource ID of the title string to use
407 public IntentBuilder setChooserTitle(@StringRes int resId) {
408 return setChooserTitle(mActivity.getText(resId));
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
SpinnerCompat.java 245 * @param resId Resource ID of a background drawable
247 public void setPopupBackgroundResource(int resId) {
248 setPopupBackgroundDrawable(mTintManager.getDrawable(resId));
    [all...]
  /cts/tests/tests/appwidget/src/android/appwidget/cts/
AppWidgetTest.java     [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
CompoundButtonTest.java 216 // resId is 0
RemoteViewsTest.java 589 private void createSampleImage(File imagefile, int resid) throws IOException {
594 source = mActivity.getResources().openRawResource(resid);
  /frameworks/base/core/java/android/app/
Fragment.java 797 * @param resId Resource id for the CharSequence text
799 public final CharSequence getText(int resId) {
800 return getResources().getText(resId);
807 * @param resId Resource id for the string
809 public final String getString(int resId) {
810 return getResources().getString(resId);
818 * @param resId Resource id for the format string
822 public final String getString(int resId, Object... formatArgs) {
823 return getResources().getString(resId, formatArgs);
    [all...]
  /frameworks/base/core/java/android/widget/
ImageView.java 383 * @param resId the resource identifier of the drawable
388 public void setImageResource(int resId) {
389 if (mUri != null || mResource != resId) {
394 mResource = resId;
    [all...]
  /frameworks/base/test-runner/src/android/test/mock/
MockContext.java 90 public void setTheme(int resid) {
  /packages/apps/Launcher2/src/com/android/launcher2/
WallpaperChooserDialogFragment.java 260 Log.e(TAG, "Error decoding thumbnail resId=" + thumbRes + " for wallpaper #"
  /packages/apps/Mms/tests/src/com/android/mms/ui/
LongThreadTest.java 315 public MenuItem setActionView(int resId) {
  /packages/apps/Settings/src/com/android/settings/applications/
RunningState.java 581 int resid = R.string.running_processes_item_description_s_s; local
583 resid = numServices != 1
587 resid = R.string.running_processes_item_description_s_p;
589 mDescription = context.getResources().getString(resid, numProcesses,
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
BinaryDictionaryGetter.java 92 Log.e(TAG, "Found the resource but cannot read it. Is it compressed? resId="
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/scsi/
sg.h 65 int resid; /* [o] dxfer_len - actual_transferred */ member in struct:sg_io_hdr
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/scsi/
sg.h 65 int resid; /* [o] dxfer_len - actual_transferred */ member in struct:sg_io_hdr
  /cts/tests/tests/media/src/android/media/cts/
MediaScannerTest.java 71 private void writeFile(int resid, String path) throws IOException {
76 copier.copyToExternalStorage(resid, out);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowView.java 880 int resId = attributeSet.getAttributeResourceValue("android", "contentDescription", 0);
881 contentDescription = context.getResources().getString(resId);
  /frameworks/base/core/java/android/service/notification/
ZenModeConfig.java 472 final int resId = minutes < 60
475 final String caption = Resources.getSystem().getQuantityString(resId, num, num);
  /frameworks/base/core/java/android/view/
MenuItem.java 509 * @param resId Layout resource to use for presenting this item to the user.
514 public MenuItem setActionView(int resId);
  /frameworks/base/core/java/com/android/internal/widget/
WaveView.java 402 BitmapDrawable createDrawable(int resId) {
404 Bitmap bitmap = BitmapFactory.decodeResource(res, resId);
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
DatabaseHelper.java     [all...]
  /frameworks/base/tests/StatusBar/src/com/android/statusbartest/
NotificationTestList.java     [all...]
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
SearchBar.java 723 private void play(final int resId) {
727 int sound = mSoundMap.get(resId);
  /packages/apps/ContactsCommon/res/values-pt/
strings.xml 22 <string name="call_home" msgid="1479549630992276827">"Ligar para residência"</string>
43 <string name="sms_home" msgid="7765831490534280540">"Enviar SMS para residência"</string>
  /packages/apps/ContactsCommon/res/values-pt-rPT/
strings.xml 118 <string name="email_home" msgid="2230967805906450693">"Enviar email para residência"</string>
131 <string name="map_home" msgid="1221397355014741634">"Ver endereço da residência"</string>
  /packages/apps/Dialer/tests/src/com/android/dialer/calllog/
CallLogFragmentTest.java 403 int resid = r.getIdentifier(resName, "drawable", local
405 BitmapDrawable d = (BitmapDrawable) r.getDrawable(resid);

Completed in 914 milliseconds

<<11121314151617181920