OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:defaultTheme
(Results
1 - 6
of
6
) sorted by null
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/util/
WizardManagerHelper.java
227
* @return The style corresponding to the theme in the given intent, or {@code
defaultTheme
} if
232
public static @StyleRes int getThemeRes(Intent intent, @StyleRes int
defaultTheme
) {
234
return getThemeRes(theme,
defaultTheme
);
253
* @return The style corresponding to the given {@code theme}, or {@code
defaultTheme
} if the
256
public static @StyleRes int getThemeRes(String theme, @StyleRes int
defaultTheme
) {
273
return
defaultTheme
;
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/
KeyboardThemeTests.java
146
final KeyboardTheme
defaultTheme
= KeyboardTheme.getDefaultKeyboardTheme(
149
assertNotNull(
defaultTheme
);
150
assertEquals(expectedThemeId,
defaultTheme
.mThemeId);
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
ConfigurationDescription.java
347
String
defaultTheme
= manifest.getDefaultTheme(target, screenSize);
349
String preferred =
defaultTheme
;
361
preferred =
defaultTheme
;
Configuration.java
701
String
defaultTheme
= manifest.getDefaultTheme(getTarget(), screenSize);
703
String preferred =
defaultTheme
;
716
preferred =
defaultTheme
;
[
all
...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/
ManifestInfo.java
370
String
defaultTheme
= application.getAttributeNS(NS_RESOURCES, ATTRIBUTE_THEME);
371
if (
defaultTheme
!= null && !
defaultTheme
.isEmpty()) {
374
mManifestTheme =
defaultTheme
;
[
all
...]
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
BridgeContext.java
535
StyleResourceValue
defaultTheme
= mRenderResources.getDefaultTheme();
541
if (
defaultTheme
== null) {
545
if (
defaultTheme
.getName().startsWith(PREFIX_THEME_APPCOMPAT)) {
549
defaultTheme
= mRenderResources.getParent(
defaultTheme
);
[
all
...]
Completed in 153 milliseconds