Home
last modified time | relevance | path

Searched refs:themes (Results 1 – 25 of 56) sorted by relevance

123

/frameworks/support/v7/appcompat/
DTHEMES.txt3 appcompat themes structure
7 The themes structure in appcompat is complex since we
16 Fourth level themes (Platform)
18 These are the base themes and allow us to switch out the framework base
30 Platform specific themes which inherit from the previous platform version. These allows us
31 to build up the theme across platforms. These themes do most of the work.
41 There are the themes which are pointers to the correct third level theme.
46 theme pointing to it. This is so that devices do not use themes from newer and unavailable
56 Top level themes
58 These are the themes to be used directly by developers. These inherit from
/frameworks/base/docs/html/design/style/
Dthemes.jd23 on the platform, Android provides two system themes that you can choose from when building apps:</p>
28 <p>Applying these themes will go a long way in helping you to build apps that fit right into the
31 desire is to have a more distinct look for your app, using one of the system themes as a starting
32 point for your customizations is a good idea. The system themes provide a solid foundation on top
37 <p>For information about how to apply themes such as Holo Light and Dark, and
38 how to build your own themes, see the
39 <a href="{@docRoot}guide/topics/ui/themes.html">Styles and Themes</a> API guide.</p>
Dtypography.jd46 <code>textColorSecondary</code>. For light themes use <code>textColorPrimaryInverse</code> and
/frameworks/base/docs/html/training/basics/supporting-devices/
Dplatforms.jd18 <li><a href="#style-themes">Use Platform Styles and Themes</a></li>
109 <h2 id="style-themes">Use Platform Styles and Themes</h2>
111 <p>Android provides user experience themes that give apps the look and feel of the
112 underlying operating system. These themes can be applied to your app within the
113 manifest file. By using these built in styles and themes, your app will
135 <p>For more about creating and using themes, read the <a
136 href="{@docRoot}guide/topics/ui/themes.html">Styles and Themes</a> guide.</p>
/frameworks/base/docs/html/training/basics/actionbar/
Dstyling.jd23 <li><a href="{@docRoot}guide/topics/ui/themes.html">Styles and Themes</a></li>
37 brand, you can easily do so using Android's <a href="{@docRoot}guide/topics/ui/themes.html">style
40 <p>Android includes a few built-in activity themes that include "dark" or "light" action bar
41 styles. You can also extend these themes to further customize the look for your action bar.</p>
66 <p>Android includes two baseline activity themes that dictate the color for the action bar:
75 <p>You can apply these themes to your entire app or to individual activities by
96 {@link android.support.v7.appcompat.R.style#Theme_AppCompat Theme.AppCompat} themes:</p>
143 <p class="code-caption">res/values/themes.xml</p>
172 <p class="code-caption">res/values/themes.xml</p>
231 <p class="code-caption">res/values/themes.xml</p>
[all …]
Dsetting-up.jd63 of the {@link android.R.style#Theme_Holo Theme.Holo} themes as its parent. For details,
96 Theme.AppCompat} themes. For example:
99 of the {@link android.support.v7.appcompat.R.style#Theme_AppCompat Theme.AppCompat} themes as
Doverlaying.jd26 <li><a href="{@docRoot}guide/topics/ui/themes.html">Styles and Themes</a></li>
/frameworks/base/docs/html/guide/topics/ui/
Dthemes.jd29 <li>{@link android.R.style} for Android styles and themes</li>
292 <p>Just as Android provides other built-in resources, there are many pre-defined themes that you ca…
332 <p>Newer versions of Android have additional themes available to applications,
335 that uses resource selection to switch between different parent themes, based on the platform
360 <p>A list of the standard attributes that you can use in themes can be
363 <p>For more information about providing alternative resources, such as themes and layouts, based
372 <p>We recommend that you set your themes in you Android manifest, as described above, because it's …
404 <p>The Android platform provides a large collection of styles and themes that you can
413 themes will give you a better understanding of what style properties each one provides.
414 For a better reference to the Android styles and themes, see the following source code:</p>
[all …]
/frameworks/base/docs/html-intl/intl/ja/training/tv/start/
Dlayouts.jd11 <li><a href="#themes">TV 向けのレイアウト テーマを使用する</a></li>
33 <h2 id="themes">TV 向けのレイアウト テーマを使用する</h2>
36 …Android の<a href="{@docRoot}guide/topics/ui/themes.html">テーマ</a>は、TV アプリのレイアウトの基礎を提供しています。TV 端末上で動…
/frameworks/base/docs/html/training/material/
Dcompatibility.jd72 widgets when you apply one of the <code>Theme.AppCompat</code> themes.</li>
74 in the <code>Theme.AppCompat</code> themes.</li>
87 <p>The <code>Theme.AppCompat</code> themes provide material design styles for these widgets:</p>
101 Library, apply one of the <code>Theme.AppCompat</code> themes:</p>
104 &lt;!-- extend one of the Theme.AppCompat themes -->
Dtheme.jd68 provide themes with material design styles for some widgets and support for customizing the color
/frameworks/base/docs/html/distribute/users/
Dindex.jd9 is different, but there are some common themes from successful Google Play
/frameworks/base/docs/html/guide/topics/resources/
Dstyle-resource.jd10 <li><a href="{@docRoot}guide/topics/ui/themes.html">Styles and Themes</a></li>
21 <a href="{@docRoot}guide/topics/ui/themes.html">Styles and Themes</a>.</p>
Dindex.jd26 <p>Before Android 4.0 the variance in system themes from device to device could make it
/frameworks/base/docs/html/design/building-blocks/
Dspinners.jd44 Spinners in the Holo Dark and Holo Light themes, in various states.
Dprogress.jd25 … Each is offered in a variety of sizes, in both Holo Light and Holo Dark themes. Choose the approp…
/frameworks/base/docs/html/training/tv/start/
Dlayouts.jd13 <li><a href="#themes">Use Layout Themes for TV</a></li>
40 <h2 id="themes">Use Layout Themes for TV</h2>
43 Android <a href="{@docRoot}guide/topics/ui/themes.html">Themes</a> can provide a basis for
45 are meant to run on a TV device. This section explains which themes you should use.
/frameworks/base/core/java/android/content/res/
DResources.java1706 String[] themes = new String[themeData.length * 2]; in getTheme() local
1710 for (int i = 0, j = themeData.length - 1; i < themes.length; i += 2, --j) { in getTheme()
1713 themes[i] = forced ? in getTheme()
1716 themes[i + 1] = forced ? "forced" : "not forced"; in getTheme()
1718 return themes; in getTheme()
/frameworks/base/docs/html/guide/practices/
Dseamlessness.jd15 <li><a href="#themes">Extend System Themes</a></li>
167 <h2 id="themes">Extend System Themes</h2>
175 the details, read <a href="{@docRoot}guide/topics/ui/themes.html">Styles and Themes</a>.</p>
/frameworks/base/docs/html/guide/practices/app-design/
Dseamlessness.jd14 <li><a href="#themes">Extend System Themes</a></li>
166 <h2 id="themes">Extend System Themes</h2>
174 the details, read <a href="{@docRoot}guide/topics/ui/themes.html">Styles and Themes</a>.</p>
/frameworks/base/docs/html/about/versions/
Dandroid-3.0.jd140 <li>Customize the Action Bar with themes and backgrounds</li>
456 <li><b>New holographic themes</b>
460 using the standard <a href="{@docRoot}guide/topics/ui/themes.html">style and theme</a> system.</p>
472 themes. If your application is compatible with version of Android lower than 3.0 and applies
473 custom themes, then you should <a
474 href="{@docRoot}guide/topics/ui/themes.html#SelectATheme">select a theme based on platform
744 href="{@docRoot}guide/topics/ui/themes.html">Applying Styles and Themes</a>.</p>
/frameworks/base/docs/html/guide/practices/ui_guidelines/
Dicon_design_action_bar.jd129 <p>When using the default "Holo Light" or "Holo Dark" themes, icons should use the color palette
/frameworks/base/docs/html/design/patterns/
Dpure-android.jd25 and the way they look in the system default themes. Also examine Android's platform apps to get a
/frameworks/base/docs/html/design/downloads/
Dindex.jd55 use with the Holo Light and Holo Dark themes. The package also includes unstyled icons that you can
/frameworks/base/docs/html/guide/topics/ui/controls/
Dbutton.jd152 href="{@docRoot}guide/topics/ui/themes.html">Styles and Themes</a>.</p>

123