/frameworks/base/docs/html/sdk/ |
D | sdk_toc.cs | 6 <span style="display:none" class="de">Aktuelle SDK-Version</span> 7 <span style="display:none" class="es">Versión actual del SDK</span> 8 <span style="display:none" class="fr">Version actuelle du SDK</span> 9 <span style="display:none" class="it">Release SDK attuale</span> 10 <span style="display:none" class="ja">現在リリースされている SDK</span> 11 <span style="display:none" class="zh-CN">当前的 SDK 版本</span> 12 <span style="display:none" class="zh-TW">目前 SDK 發行版本</span> 18 <span style="display:none" class="de">Herunterladen</span> 19 <span style="display:none" class="es">Descargar</span> 20 <span style="display:none" class="fr">Téléchargement</span> [all …]
|
D | android-4.0-highlights.jd | 6 <style type="text/css"> 39 </style> 61 <h2 id="UserFeatures" style="clear:right">Android 4.0 for Users</h2> 63 <div style="padding-bottom:0em;"> 64 <a href="{@docRoot}sdk/images/4.0/home-lg.png" target="_android"><img style="float:right;xborder:1p… 65 <a href="{@docRoot}sdk/images/4.0/lock-lg.png" target="_android"><img style="float:right;border:1px… 69 <h3 id="simple" style="color:#172861">Simple, beautiful, beyond smart</h3> 76 <p style="margin-top:1em;margin-bottom:.75em;"><strong>Refined, evolved UI</strong></p> 98 <div style="padding-top:0em;"> 99 <div style="margin-right:.5em;float:left;width:182px;padding-top:.5em;"> [all …]
|
D | android-3.0-highlights.jd | 6 <style type="text/css"> 39 </style> 54 <h2 id="UserFeatures" style="clear:right">New User Features</h2> 56 <div style="padding-top:0em;"> 57 <div style="margin-right:1em;margin-left:1em;float:right;padding-top:2em;"><a href="images/3.0/home… 67 <p style="margin-top:1em;margin-bottom:.75em;"><strong>System Bar, for global status and notificati… 71 <p style="margin-top:1em;margin-bottom:.75em;"><strong>Action Bar, for application control</strong>… 77 <div style="padding-top:0em;"> 78 <div style="margin-right:1em;float:right;margin-left:1em;"><a href="images/3.0/homescreen_cust_port… 80 <p style="margin-top:1em;margin-bottom:.75em;"><strong>Customizable Home screens</strong></p> [all …]
|
/frameworks/base/core/java/android/content/res/ |
D | StringBlock.java | 20 import android.text.style.*; 83 int[] style = nativeGetStyle(mNative, idx); in get() local 85 if (localLOGV) Log.v(TAG, "Got styles: " + style); in get() 86 if (style != null) { in get() 93 for (int styleIndex = 0; styleIndex < style.length; styleIndex += 3) { in get() 94 int styleId = style[styleIndex]; in get() 133 res = applyStyles(str, style, mStyleIDs); in get() 161 private CharSequence applyStyles(String str, int[] style, StyleIDs ids) { in applyStyles() argument 162 if (style.length == 0) in applyStyles() 167 while (i < style.length) { in applyStyles() [all …]
|
/frameworks/base/docs/html/resources/ |
D | resources_toc.cs | 9 <span class="de" style="display:none">Beispielcode</span> 10 <span class="es" style="display:none">Código de ejemplo</span> 11 <span class="fr" style="display:none">Exemple de code</span> 12 <span class="it" style="display:none">Codice di esempio</span> 13 <span class="ja" style="display:none">サンプル コード</span> 14 <span class="zh-CN" style="display:none"></span> 15 <span class="zh-TW" style="display:none"></span> 33 <span class="de" style="display:none">Lernprogramme</span> 34 <span class="es" style="display:none">Tutoriales</span> 35 <span class="fr" style="display:none">Didacticiels</span> [all …]
|
/frameworks/base/docs/html/guide/ |
D | guide_toc.cs | 12 <span class="de" style="display:none">Einführung in Android</span> 13 <span class="es" style="display:none">Información básica sobre Android</span> 14 <span class="fr" style="display:none">Présentation d'Android</span> 27 <span class="ja" style="display:none">Android とは</span> 28 <span class="zh-CN" style="display:none">Android 是什么?</span> 29 <span class="zh-TW" style="display:none">什麼是 Android?</span> 33 <span class="de" style="display:none">Anwendungsgrundlagen</span> 34 <span class="es" style="display:none">Fundamentos de las aplicaciones</span> 35 <span class="fr" style="display:none">Principes de base des applications</span> 36 <span class="it" style="display:none">Concetti fondamentali sulle applicazioni</span> [all …]
|
/frameworks/base/docs/html/guide/topics/ui/ |
D | themes.jd | 18 <li><a href="#ApplyAStyle">Apply a style to a View</a></li> 29 <li>{@link android.R.style} for Android styles and themes</li> 30 <li>{@link android.R.attr} for all style attributes</li> 36 <p>A <strong>style</strong> is a collection of properties that 38 A style can specify properties such as height, padding, font color, font size, 39 background color, and much more. A style is defined in an XML resource that is 46 <p>For example, by using a style, you can take this layout XML:</p> 58 style="@style/CodeFont" 62 <p>All of the attributes related to style have been removed from the layout XML and put into a 63 style definition called {@code CodeFont}, which is then applied with the <code>style</code> [all …]
|
/frameworks/base/docs/html/guide/topics/resources/ |
D | style-resource.jd | 16 <p>A style resource defines the format and look for a UI. 17 A style can be applied to an individual {@link android.view.View} (from within a layout file) or to 23 <p class="note"><strong>Note:</strong> A style is a simple resource that is referenced 25 such, you can combine style resources with other simple resources in the one XML file, 36 In XML: <code>@[package:]style/<em>style_name</em></code> 44 <<a href="#style-element">style</a> 46 parent="@[package:]style/<em>style_to_inherit</em>"> 50 </style> 63 <dt id="style-element"><code><style></code></dt> 64 <dd>Defines a single style. Contains {@code <item>} elements. [all …]
|
/frameworks/base/core/java/android/text/ |
D | Html.java | 32 import android.text.style.AbsoluteSizeSpan; 33 import android.text.style.AlignmentSpan; 34 import android.text.style.CharacterStyle; 35 import android.text.style.ForegroundColorSpan; 36 import android.text.style.ImageSpan; 37 import android.text.style.ParagraphStyle; 38 import android.text.style.QuoteSpan; 39 import android.text.style.RelativeSizeSpan; 40 import android.text.style.StrikethroughSpan; 41 import android.text.style.StyleSpan; [all …]
|
/frameworks/base/graphics/java/android/graphics/ |
D | Typeface.java | 82 public static Typeface create(String familyName, int style) { in create() argument 83 return new Typeface(nativeCreate(familyName, style)); in create() 97 public static Typeface create(Typeface family, int style) { in create() argument 102 return new Typeface(nativeCreateFromTypeface(ni, style)); in create() 110 public static Typeface defaultFromStyle(int style) { in defaultFromStyle() argument 111 return sDefaults[style]; in defaultFromStyle() 172 private static native int nativeCreate(String familyName, int style); in nativeCreate() argument 173 private static native int nativeCreateFromTypeface(int native_instance, int style); in nativeCreateFromTypeface() argument
|
D | BlurMaskFilter.java | 46 public BlurMaskFilter(float radius, Blur style) { in BlurMaskFilter() argument 47 native_instance = nativeConstructor(radius, style.native_int); in BlurMaskFilter() 50 private static native int nativeConstructor(float radius, int style); in nativeConstructor() argument
|
/frameworks/base/core/java/android/text/style/ |
D | TextAppearanceSpan.java | 17 package android.text.style; 94 a = context.obtainStyledAttributes(com.android.internal.R.style.Theme, in TextAppearanceSpan() 108 public TextAppearanceSpan(String family, int style, int size, in TextAppearanceSpan() argument 111 mStyle = style; in TextAppearanceSpan() 216 int style = 0; in updateMeasureState() local 219 style = tf.getStyle(); in updateMeasureState() 222 style |= mStyle; in updateMeasureState() 225 tf = Typeface.create(mTypeface, style); in updateMeasureState() 227 tf = Typeface.defaultFromStyle(style); in updateMeasureState() 229 tf = Typeface.create(tf, style); in updateMeasureState() [all …]
|
D | StyleSpan.java | 17 package android.text.style; 44 public StyleSpan(int style) { in StyleSpan() argument 45 mStyle = style; in StyleSpan() 81 private static void apply(Paint paint, int style) { in apply() argument 91 int want = oldStyle | style; in apply()
|
/frameworks/base/core/jni/ |
D | android_view_PointerIcon.h | 47 int32_t style; member 53 return style == POINTER_ICON_STYLE_NULL; in isNullIcon() 57 style = POINTER_ICON_STYLE_NULL; in reset() 66 jobject contextObj, int32_t style); 76 jobject contextObj, int32_t style, PointerIcon* outPointerIcon);
|
D | android_view_PointerIcon.cpp | 42 jobject android_view_PointerIcon_getSystemIcon(JNIEnv* env, jobject contextObj, int32_t style) { in android_view_PointerIcon_getSystemIcon() argument 44 gPointerIconClassInfo.getSystemIcon, contextObj, style); in android_view_PointerIcon_getSystemIcon() 46 LOGW("An exception occurred while getting a pointer icon with style %d.", style); in android_view_PointerIcon_getSystemIcon() 71 outPointerIcon->style = env->GetIntField(loadedPointerIconObj, in android_view_PointerIcon_load() 92 int32_t style, PointerIcon* outPointerIcon) { in android_view_PointerIcon_loadSystemIcon() argument 93 jobject pointerIconObj = android_view_PointerIcon_getSystemIcon(env, contextObj, style); in android_view_PointerIcon_loadSystemIcon()
|
/frameworks/base/core/java/android/view/ |
D | PointerIcon.java | 77 private PointerIcon(int style) { in PointerIcon() argument 78 mStyle = style; in PointerIcon() 114 public static PointerIcon getSystemIcon(Context context, int style) { in getSystemIcon() argument 119 if (style == STYLE_NULL) { in getSystemIcon() 123 int styleIndex = getSystemIconStyleIndex(style); in getSystemIcon() 135 Log.w(TAG, "Missing theme resources for pointer icon style " + style); in getSystemIcon() 136 return style == STYLE_DEFAULT ? gNullIcon : getSystemIcon(context, STYLE_DEFAULT); in getSystemIcon() 139 PointerIcon icon = new PointerIcon(style); in getSystemIcon() 311 int style = in.readInt(); 312 if (style == STYLE_NULL) { [all …]
|
/frameworks/base/docs/html/guide/appendix/ |
D | media-formats.jd | 75 <td style="text-align: center;"><big>•</big></td> 76 <td style="text-align: center;"><big>•</big></td> 89 <td style="text-align: center;"><big>•</big></td> 95 <td style="text-align: center;"><big>•</big></td> 100 <td style="text-align: center;"><big>•</big></td> 101 <td style="text-align: center;"><big>•</big></td> 109 <td style="text-align: center;"><big>•</big></td> 110 <td style="text-align: center;"><big>•</big></td> 119 <td style="text-align: center;" nowrap><big>•</big><br><small>(Android 3.1+)</small></td> 132 <td style="text-align: center;"><big>•</big></td> [all …]
|
/frameworks/base/core/tests/coretests/src/android/text/ |
D | SpannedTest.java | 23 import android.text.style.*; 81 StyleSpan[] style; in testWrapParcel() local 83 style = s2.getSpans(1, 2, StyleSpan.class); in testWrapParcel() 84 assertEquals(1, style.length); in testWrapParcel() 85 assertEquals(1, s2.getSpanStart(style[0])); in testWrapParcel() 86 assertEquals(2, s2.getSpanEnd(style[0])); in testWrapParcel() 88 style = s2.getSpans(3, 7, StyleSpan.class); in testWrapParcel() 89 assertEquals(1, style.length); in testWrapParcel() 90 assertEquals(3, s2.getSpanStart(style[0])); in testWrapParcel() 91 assertEquals(7, s2.getSpanEnd(style[0])); in testWrapParcel()
|
D | HtmlTest.java | 23 import android.text.style.ForegroundColorSpan; 24 import android.text.style.QuoteSpan; 25 import android.text.style.StrikethroughSpan; 26 import android.text.style.StyleSpan; 27 import android.text.style.SubscriptSpan; 28 import android.text.style.SuperscriptSpan; 29 import android.text.style.TextAppearanceSpan; 30 import android.text.style.TypefaceSpan; 31 import android.text.style.URLSpan; 32 import android.text.style.UnderlineSpan;
|
/frameworks/base/docs/html/resources/articles/ |
D | zipalign.jd | 49 <li style="list-style-type: none; list-style-image: none; list-style-position: outside;"> 58 <li>Using Ant:</li><li style="list-style-type: none; list-style-image: none; list-style-position: o… 79 <li style="list-style-type: none; list-style-image: none; list-style-position: outside;"> 89 <li style="list-style-type: none; list-style-image: none; list-style-position: outside;">
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
D | Clock.java | 31 import android.text.style.CharacterStyle; 32 import android.text.style.ForegroundColorSpan; 33 import android.text.style.RelativeSizeSpan; 34 import android.text.style.RelativeSizeSpan; 35 import android.text.style.StyleSpan; 193 CharacterStyle style = new RelativeSizeSpan(0.7f); in getSmallTime() local 194 formatted.setSpan(style, magic1, magic2, in getSmallTime()
|
/frameworks/base/media/java/android/media/ |
D | TimedText.java | 461 Style style = new Style(); in readStyle() local 468 style.startChar = mParcel.readInt(); in readStyle() 472 style.endChar = mParcel.readInt(); in readStyle() 476 style.fontID = mParcel.readInt(); in readStyle() 483 style.isBold = ((flags % 2) == 1); in readStyle() 484 style.isItalic = ((flags % 4) >= 2); in readStyle() 485 style.isUnderlined = ((flags / 4) == 1); in readStyle() 489 style.fontSize = mParcel.readInt(); in readStyle() 493 style.colorRGBA = mParcel.readInt(); in readStyle() 509 mStyleList.add(style); in readStyle()
|
/frameworks/base/core/jni/android/graphics/ |
D | Typeface.cpp | 31 SkTypeface::Style style) { in Typeface_create() argument 35 face = SkTypeface::CreateFromName(NULL, (SkTypeface::Style)style); in Typeface_create() 39 face = SkTypeface::CreateFromName(str.c_str(), style); in Typeface_create() 44 static SkTypeface* Typeface_createFromTypeface(JNIEnv* env, jobject, SkTypeface* family, int style)… in Typeface_createFromTypeface() argument 45 return SkTypeface::CreateFromTypeface(family, (SkTypeface::Style)style); in Typeface_createFromTypeface() 53 return face->style(); in Typeface_getStyle()
|
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
D | Typeface_Delegate.java | 102 /*package*/ static synchronized int nativeCreate(String familyName, int style) { in nativeCreate() argument 107 Typeface_Delegate newDelegate = new Typeface_Delegate(familyName, style); in nativeCreate() 121 /*package*/ static synchronized int nativeCreateFromTypeface(int native_instance, int style) { in nativeCreateFromTypeface() argument 127 Typeface_Delegate newDelegate = new Typeface_Delegate(delegate.mFamily, style); in nativeCreateFromTypeface() 198 private Typeface_Delegate(String family, int style) { in Typeface_Delegate() argument 200 mStyle = style; in Typeface_Delegate()
|
/frameworks/base/docs/html/intl/ja/ |
D | index.jd | 15 <div id="announcement" style="width:275px"> 21 …<div id="carouselMain" style="height:210px"> <!-- this height can be adjusted based on the content… 28 <div style="left: 0px;" id="app-list"> 38 <div style="clear:both"> </div> 44 …Root}sdk/index.html"><img src="{@docRoot}assets/images/icon_download.jpg" style="padding:0" /></a>… 55 …droid.com/market.html"><img src="{@docRoot}assets/images/icon_market.jpg" style="padding:0" /></a>… 66 …ource.android.com"><img src="{@docRoot}assets/images/icon_contribute.jpg" style="padding:0" /></a>… 77 …ser/androiddevelopers"><img src="{@docRoot}assets/images/video-droid.png" style="padding:0" /></a>… 81 … <p style="margin-top:1em"><a href="{@docRoot}videos/index.html">その他の Android 動画 »</a></p> 90 <style> [all …]
|