Searched defs:context (Results 326 - 350 of 1847) sorted by relevance

<<11121314151617181920>>

/frameworks/support/v4/gingerbread/android/support/v4/app/
H A DNotificationCompatGingerbread.java24 public static Notification add(Notification notification, Context context, argument
27 notification.setLatestEventInfo(context, contentTitle, contentText, contentIntent);
/frameworks/support/v4/honeycomb/android/support/v4/app/
H A DNotificationCompatHoneycomb.java26 static Notification add(Context context, Notification n, argument
30 Notification.Builder b = new Notification.Builder(context)
/frameworks/support/v4/ics/android/support/v4/speech/tts/
H A DTextToSpeechICS.java13 static TextToSpeech construct(Context context, OnInitListener onInitListener, argument
17 return new TextToSpeech(context, onInitListener);
20 return new TextToSpeech(context, onInitListener);
23 return new TextToSpeech(context, onInitListener, engineName);
/frameworks/support/v4/ics/android/support/v4/view/
H A DPagerTitleStripIcs.java36 public SingleLineAllCapsTransform(Context context) { argument
37 mLocale = context.getResources().getConfiguration().locale;
/frameworks/support/v4/ics/android/support/v4/widget/
H A DSearchViewCompatIcs.java29 public MySearchView(Context context) { argument
30 super(context);
42 public static View newSearchView(Context context) { argument
43 return new MySearchView(context);
/frameworks/support/v4/java/android/support/v4/app/
H A DNoSaveStateFrameLayout.java44 public NoSaveStateFrameLayout(Context context) { argument
45 super(context);
/frameworks/support/v4/java/android/support/v4/content/
H A DWakefulBroadcastReceiver.java75 * @param context The Context in which it operate.
80 public static ComponentName startWakefulService(Context context, Intent intent) { argument
89 ComponentName comp = context.startService(intent);
94 PowerManager pm = (PowerManager)context.getSystemService(Context.POWER_SERVICE);
/frameworks/support/v4/jellybean/android/support/v4/app/
H A DActivityCompatJB.java25 public static void startActivity(Context context, Intent intent, Bundle options) { argument
26 context.startActivity(intent, options);
H A DTaskStackBuilderJellybean.java26 public static PendingIntent getActivitiesPendingIntent(Context context, int requestCode, argument
28 return PendingIntent.getActivities(context, requestCode, intents, flags, options);
/frameworks/support/v4/jellybean-mr1/android/support/v4/hardware/display/
H A DDisplayManagerJellybeanMr1.java23 public static Object getDisplayManager(Context context) { argument
24 return context.getSystemService(Context.DISPLAY_SERVICE);
/frameworks/support/v7/appcompat/src/android/support/v7/internal/text/
H A DAllCapsTransformationMethod.java32 public AllCapsTransformationMethod(Context context) { argument
33 mLocale = context.getResources().getConfiguration().locale;
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/
H A DActionBarPolicy.java37 public static ActionBarPolicy get(Context context) { argument
38 return new ActionBarPolicy(context);
41 private ActionBarPolicy(Context context) { argument
42 mContext = context;
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
H A DMenuWrapperFactory.java35 public static Menu wrapSupportMenu(Context context, SupportMenu supportMenu) { argument
37 return new MenuWrapperICS(context, supportMenu);
42 public static MenuItem wrapSupportMenuItem(Context context, SupportMenuItem supportMenuItem) { argument
44 return new MenuItemWrapperJB(context, supportMenuItem);
46 return new MenuItemWrapperICS(context, supportMenuItem);
51 public static SubMenu wrapSupportSubMenu(Context context, SupportSubMenu supportSubMenu) { argument
53 return new SubMenuWrapperICS(context, supportSubMenu);
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DContentFrameLayout.java29 public ContentFrameLayout(Context context) { argument
30 this(context, null);
33 public ContentFrameLayout(Context context, AttributeSet attrs) { argument
34 this(context, attrs, 0);
37 public ContentFrameLayout(Context context, AttributeSet attrs, int defStyleAttr) { argument
38 super(context, attrs, defStyleAttr);
H A DFitWindowsFrameLayout.java31 public FitWindowsFrameLayout(Context context) { argument
32 super(context);
35 public FitWindowsFrameLayout(Context context, AttributeSet attrs) { argument
36 super(context, attrs);
H A DFitWindowsLinearLayout.java31 public FitWindowsLinearLayout(Context context) { argument
32 super(context);
35 public FitWindowsLinearLayout(Context context, AttributeSet attrs) { argument
36 super(context, attrs);
H A DNativeActionModeAwareLayout.java34 public NativeActionModeAwareLayout(Context context, AttributeSet attrs) { argument
35 super(context, attrs);
H A DTintAutoCompleteTextView.java39 public TintAutoCompleteTextView(Context context) { argument
40 this(context, null);
43 public TintAutoCompleteTextView(Context context, AttributeSet attrs) { argument
44 this(context, attrs, android.R.attr.autoCompleteTextViewStyle);
47 public TintAutoCompleteTextView(Context context, AttributeSet attrs, int defStyleAttr) { argument
48 super(context, attrs, defStyleAttr);
50 TintTypedArray a = TintTypedArray.obtainStyledAttributes(context, attrs, TINT_ATTRS,
H A DTintButton.java37 public TintButton(Context context) { argument
38 this(context, null);
41 public TintButton(Context context, AttributeSet attrs) { argument
42 this(context, attrs, android.R.attr.buttonStyle);
45 public TintButton(Context context, AttributeSet attrs, int defStyleAttr) { argument
46 super(context, attrs, defStyleAttr);
48 TintTypedArray a = TintTypedArray.obtainStyledAttributes(context, attrs, TINT_ATTRS,
H A DTintCheckBox.java36 public TintCheckBox(Context context) { argument
37 this(context, null);
40 public TintCheckBox(Context context, AttributeSet attrs) { argument
41 this(context, attrs, android.R.attr.checkboxStyle);
44 public TintCheckBox(Context context, AttributeSet attrs, int defStyleAttr) { argument
45 super(context, attrs, defStyleAttr);
47 TintTypedArray a = TintTypedArray.obtainStyledAttributes(context, attrs, TINT_ATTRS,
H A DTintCheckedTextView.java37 public TintCheckedTextView(Context context) { argument
38 this(context, null);
41 public TintCheckedTextView(Context context, AttributeSet attrs) { argument
42 this(context, attrs, android.R.attr.checkedTextViewStyle);
45 public TintCheckedTextView(Context context, AttributeSet attrs, int defStyleAttr) { argument
46 super(context, attrs, defStyleAttr);
48 TintTypedArray a = TintTypedArray.obtainStyledAttributes(context, attrs, TINT_ATTRS,
H A DTintImageView.java38 public TintImageView(Context context) { argument
39 this(context, null);
42 public TintImageView(Context context, AttributeSet attrs) { argument
43 this(context, attrs, 0);
46 public TintImageView(Context context, AttributeSet attrs, int defStyleAttr) { argument
47 super(context, attrs, defStyleAttr);
49 TintTypedArray a = TintTypedArray.obtainStyledAttributes(context, attrs, TINT_ATTRS,
H A DTintMultiAutoCompleteTextView.java38 public TintMultiAutoCompleteTextView(Context context) { argument
39 this(context, null);
42 public TintMultiAutoCompleteTextView(Context context, AttributeSet attrs) { argument
43 this(context, attrs, android.R.attr.autoCompleteTextViewStyle);
46 public TintMultiAutoCompleteTextView(Context context, AttributeSet attrs, int defStyleAttr) { argument
47 super(context, attrs, defStyleAttr);
49 TintTypedArray a = TintTypedArray.obtainStyledAttributes(context, attrs, TINT_ATTRS,
H A DTintRadioButton.java37 public TintRadioButton(Context context) { argument
38 this(context, null);
41 public TintRadioButton(Context context, AttributeSet attrs) { argument
42 this(context, attrs, android.R.attr.radioButtonStyle);
45 public TintRadioButton(Context context, AttributeSet attrs, int defStyleAttr) { argument
46 super(context, attrs, defStyleAttr);
48 TintTypedArray a = TintTypedArray.obtainStyledAttributes(context, attrs, TINT_ATTRS,
H A DTintSpinner.java41 public TintSpinner(Context context) { argument
42 this(context, null);
45 public TintSpinner(Context context, AttributeSet attrs) { argument
46 this(context, attrs, android.R.attr.spinnerStyle);
49 public TintSpinner(Context context, AttributeSet attrs, int defStyleAttr) { argument
50 super(context, attrs, defStyleAttr);
52 TintTypedArray a = TintTypedArray.obtainStyledAttributes(context, attrs, TINT_ATTRS,

Completed in 265 milliseconds

<<11121314151617181920>>