...
Theme Name | SDK Version | Description |
---|---|---|
Theme.Titanium | * | Theme applied to the root splash screen activity only. Does not show a top action bar. As of Titanium 9.3.0, this theme is based on Prior to 9.3.0, this theme is based on |
Theme.AppCompat.Translucent | 3.4.0 | Based on |
Theme.AppCompat.Translucent.NoTitleBar | 3.4.0 | Based on Theme.AppCompat . Has a transparent background and no action bar. |
Theme.AppCompat.Translucent.NoTitleBar.Fullscreen | 3.4.0 | Based on Theme.AppCompat . Has a transparent background. Has no action bar or status bar. |
Theme.AppCompat.Fullscreen | 3.4.0 | Based on Theme.AppCompat . Has no action or status bar. |
Theme.AppCompat.NoTitleBar | 4.2.0 | Based on Theme.AppCompat . Has no action bar. |
Theme.AppCompat.NoTitleBar.Fullscreen | 4.2.0 | Exactly the same as Theme.AppCompat.Fullscreen above. |
Theme.MaterialComponents.Fullscreen.Bridge | 9.3.0 | Based on Theme.MaterialComponents.Bridge . Has no action bar or status bar. |
Theme.Titanium.NoTitleBar | 9.3.0 | Based on the application's assigned theme, which uses This theme can Can only be applied to activities and not the application. |
Theme.Titanium.Fullscreen | 9.3.0 | Based on the application's assigned theme, which uses This theme can Can only be applied to activities and not the application. |
Theme.Titanium.Translucent.NoTitleBar | 9.3.0 | Based on the application's assigned theme, which uses This theme can Can only be applied to activities and not the application. |
Theme.Titanium.Translucent.Fullscreen | 9.3.0 | Based on the application's assigned theme, which uses This theme can Can only be applied to activities and not the application. |
To apply a theme globally, in the tiapp.xml
file, set the android:theme
attribute to the theme name in the <application/>
element of the Android manifest section. As of Titanium 9.0.0, you can use a Theme.MaterialComponents.*
based theme to support Google's material design.
...