HomeSort by relevance Sort by last modified time
    Searched refs:themeResId (Results 1 - 11 of 11) sorted by null

  /frameworks/support/v7/appcompat/src/android/support/v7/internal/view/
ContextThemeWrapper.java 37 public ContextThemeWrapper(Context base, @StyleRes int themeResId) {
39 mThemeResource = themeResId;
  /frameworks/base/core/java/android/app/
AlertDialog.java 172 * The specified theme resource ({@code themeResId}) is applied on top of
180 * {@code themeResId} may instead be specified as an overlay theme such as
185 * Alternatively, the {@code themeResId} may be specified as {@code 0} to
190 * @param themeResId the resource ID of the theme against which to inflate
195 protected AlertDialog(Context context, @StyleRes int themeResId) {
196 this(context, themeResId, true);
199 AlertDialog(Context context, @StyleRes int themeResId, boolean createContextThemeWrapper) {
200 super(context, createContextThemeWrapper ? resolveDialogTheme(context, themeResId) : 0,
207 static int resolveDialogTheme(Context context, int themeResId) {
208 if (themeResId == THEME_TRADITIONAL)
    [all...]
TimePickerDialog.java 98 * @param themeResId the resource ID of the theme to apply to this dialog
104 public TimePickerDialog(Context context, int themeResId, OnTimeSetListener listener,
106 super(context, resolveDialogTheme(context, themeResId));
Dialog.java 164 * @param themeResId a style resource describing the theme to use for the
167 public Dialog(@NonNull Context context, @StyleRes int themeResId) {
168 this(context, themeResId, true);
171 Dialog(@NonNull Context context, @StyleRes int themeResId, boolean createContextThemeWrapper) {
173 if (themeResId == 0) {
176 themeResId = outValue.resourceId;
178 mContext = new ContextThemeWrapper(context, themeResId);
    [all...]
  /frameworks/base/core/java/android/view/
ContextThemeWrapper.java 40 public ContextThemeWrapper(Context base, @StyleRes int themeResId) {
42 mThemeResource = themeResId;
LayoutInflater.java 731 final int themeResId = ta.getResourceId(0, 0);
732 if (themeResId != 0) {
733 context = new ContextThemeWrapper(context, themeResId);
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/view/
LayoutInflater_Delegate.java 94 final int themeResId = ta.getResourceId(0, 0);
95 final boolean hasThemeOverride = themeResId != 0;
97 context = new ContextThemeWrapper(context, themeResId);
  /packages/apps/Settings/src/com/android/settings/
SettingsActivity.java 573 final int themeResId = getThemeResId();
574 if (themeResId != R.style.Theme_DialogWhenLarge &&
575 themeResId != R.style.Theme_SubSettingsDialogWhenLarge) {
    [all...]
  /prebuilts/sdk/current/
android.jar 
  /prebuilts/sdk/current/support/v7/appcompat/libs/
android-support-v7-appcompat.jar 
  /prebuilts/sdk/system_current/
android.jar 

Completed in 611 milliseconds