HomeSort by relevance Sort by last modified time
    Searched full:themeresid (Results 1 - 16 of 16) sorted by null

  /frameworks/support/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/cards/presenters/
CardPresenterSelector.java 56 int themeResId = R.style.MovieCardSimpleTheme;
58 themeResId = R.style.MovieCardBasicTheme;
60 themeResId = R.style.MovieCardCompleteTheme;
62 themeResId = R.style.SquareBigCardTheme;
64 themeResId = R.style.GridCardTheme;
66 themeResId = R.style.GameCardTheme;
68 presenter = new ImageCardViewPresenter(mContext, themeResId);
  /frameworks/base/core/java/android/app/
DatePickerDialog.java 68 * @param themeResId the resource ID of the theme against which to inflate
72 public DatePickerDialog(@NonNull Context context, @StyleRes int themeResId) {
73 this(context, themeResId, null, Calendar.getInstance(), -1, -1, -1);
97 * @param themeResId the resource ID of the theme against which to inflate
107 public DatePickerDialog(@NonNull Context context, @StyleRes int themeResId,
109 this(context, themeResId, listener, null, year, monthOfYear, dayOfMonth);
112 private DatePickerDialog(@NonNull Context context, @StyleRes int themeResId,
115 super(context, resolveDialogTheme(context, themeResId));
139 static @StyleRes int resolveDialogTheme(@NonNull Context context, @StyleRes int themeResId) {
140 if (themeResId == 0)
    [all...]
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 96 * @param themeResId the resource ID of the theme to apply to this dialog
102 public TimePickerDialog(Context context, int themeResId, OnTimeSetListener listener,
104 super(context, resolveDialogTheme(context, themeResId));
Dialog.java 162 * @param themeResId a style resource describing the theme to use for the
165 public Dialog(@NonNull Context context, @StyleRes int themeResId) {
166 this(context, themeResId, true);
169 Dialog(@NonNull Context context, @StyleRes int themeResId, boolean createContextThemeWrapper) {
171 if (themeResId == 0) {
174 themeResId = outValue.resourceId;
176 mContext = new ContextThemeWrapper(context, themeResId);
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/view/
ContextThemeWrapper.java 37 public ContextThemeWrapper(Context base, @StyleRes int themeResId) {
39 mThemeResource = themeResId;
  /frameworks/base/core/java/android/view/
ContextThemeWrapper.java 53 * <var>themeResId</var> will retain their original values.
56 * @param themeResId the resource ID of the theme to be applied on top of
59 public ContextThemeWrapper(Context base, @StyleRes int themeResId) {
61 mThemeResource = themeResId;
LayoutInflater.java 754 final int themeResId = ta.getResourceId(0, 0);
755 if (themeResId != 0) {
756 context = new ContextThemeWrapper(context, themeResId);
    [all...]
  /frameworks/support/v7/mediarouter/src/android/support/v7/app/
MediaRouterThemeHelper.java 141 public static int getAlertDialogResolvedTheme(Context context, int themeResId) {
142 if (themeResId >= 0x01000000) { // start of real resource IDs.
143 return themeResId;
  /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);
BridgeInflater.java 155 final int themeResId = ta.getResourceId(0, 0);
156 if (themeResId != 0) {
157 context = new ContextThemeWrapper(context, themeResId);
  /frameworks/support/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/app/media/
MusicConsumptionExampleFragment.java 130 SongPresenter(Context context, int themeResId) {
131 super(themeResId);
  /frameworks/support/v7/appcompat/src/android/support/v7/app/
AlertDialog.java 94 protected AlertDialog(@NonNull Context context, @StyleRes int themeResId) {
95 super(context, resolveDialogTheme(context, themeResId));
298 * The specified theme resource ({@code themeResId}) is applied on top
306 * {@code themeResId} may instead be specified as an overlay theme such
311 * Alternatively, the {@code themeResId} may be specified as {@code 0}
316 * @param themeResId the resource ID of the theme against which to inflate
320 public Builder(@NonNull Context context, @StyleRes int themeResId) {
322 context, resolveDialogTheme(context, themeResId)));
323 mTheme = themeResId;
    [all...]
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
ImageCardView.java 138 * @param themeResId
147 public ImageCardView(Context context, int themeResId) {
148 this(new ContextThemeWrapper(context, themeResId));
  /packages/apps/Settings/src/com/android/settings/
SettingsActivity.java 560 final int themeResId = getThemeResId();
561 if (themeResId != R.style.Theme_DialogWhenLarge &&
562 themeResId != R.style.Theme_SubSettingsDialogWhenLarge) {
    [all...]
  /prebuilts/sdk/current/support/v7/appcompat/libs/
android-support-v7-appcompat.jar 

Completed in 850 milliseconds