android.view.accessibility.CaptioningManager.CaptionStyle Java Examples
The following examples show how to use
android.view.accessibility.CaptioningManager.CaptionStyle.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: CaptionStyleCompat.java From K-Sonic with MIT License | 5 votes |
@TargetApi(21) @SuppressWarnings("ResourceType") private static CaptionStyleCompat createFromCaptionStyleV21( CaptioningManager.CaptionStyle captionStyle) { return new CaptionStyleCompat( captionStyle.hasForegroundColor() ? captionStyle.foregroundColor : DEFAULT.foregroundColor, captionStyle.hasBackgroundColor() ? captionStyle.backgroundColor : DEFAULT.backgroundColor, captionStyle.hasWindowColor() ? captionStyle.windowColor : DEFAULT.windowColor, captionStyle.hasEdgeType() ? captionStyle.edgeType : DEFAULT.edgeType, captionStyle.hasEdgeColor() ? captionStyle.edgeColor : DEFAULT.edgeColor, captionStyle.getTypeface()); }
Example #2
Source File: CaptionStyleCompat.java From Telegram with GNU General Public License v2.0 | 5 votes |
@TargetApi(21) @SuppressWarnings("ResourceType") private static CaptionStyleCompat createFromCaptionStyleV21( CaptioningManager.CaptionStyle captionStyle) { return new CaptionStyleCompat( captionStyle.hasForegroundColor() ? captionStyle.foregroundColor : DEFAULT.foregroundColor, captionStyle.hasBackgroundColor() ? captionStyle.backgroundColor : DEFAULT.backgroundColor, captionStyle.hasWindowColor() ? captionStyle.windowColor : DEFAULT.windowColor, captionStyle.hasEdgeType() ? captionStyle.edgeType : DEFAULT.edgeType, captionStyle.hasEdgeColor() ? captionStyle.edgeColor : DEFAULT.edgeColor, captionStyle.getTypeface()); }
Example #3
Source File: CaptionStyleCompat.java From Telegram with GNU General Public License v2.0 | 5 votes |
@TargetApi(19) @SuppressWarnings("ResourceType") private static CaptionStyleCompat createFromCaptionStyleV19( CaptioningManager.CaptionStyle captionStyle) { return new CaptionStyleCompat( captionStyle.foregroundColor, captionStyle.backgroundColor, Color.TRANSPARENT, captionStyle.edgeType, captionStyle.edgeColor, captionStyle.getTypeface()); }
Example #4
Source File: CaptionStyleCompat.java From Telegram with GNU General Public License v2.0 | 5 votes |
/** * Creates a {@link CaptionStyleCompat} equivalent to a provided {@link CaptionStyle}. * * @param captionStyle A {@link CaptionStyle}. * @return The equivalent {@link CaptionStyleCompat}. */ @TargetApi(19) public static CaptionStyleCompat createFromCaptionStyle( CaptioningManager.CaptionStyle captionStyle) { if (Util.SDK_INT >= 21) { return createFromCaptionStyleV21(captionStyle); } else { // Note - Any caller must be on at least API level 19 or greater (because CaptionStyle did // not exist in earlier API levels). return createFromCaptionStyleV19(captionStyle); } }
Example #5
Source File: CaptionStyleCompat.java From Telegram-FOSS with GNU General Public License v2.0 | 5 votes |
@TargetApi(21) @SuppressWarnings("ResourceType") private static CaptionStyleCompat createFromCaptionStyleV21( CaptioningManager.CaptionStyle captionStyle) { return new CaptionStyleCompat( captionStyle.hasForegroundColor() ? captionStyle.foregroundColor : DEFAULT.foregroundColor, captionStyle.hasBackgroundColor() ? captionStyle.backgroundColor : DEFAULT.backgroundColor, captionStyle.hasWindowColor() ? captionStyle.windowColor : DEFAULT.windowColor, captionStyle.hasEdgeType() ? captionStyle.edgeType : DEFAULT.edgeType, captionStyle.hasEdgeColor() ? captionStyle.edgeColor : DEFAULT.edgeColor, captionStyle.getTypeface()); }
Example #6
Source File: CaptionStyleCompat.java From Telegram-FOSS with GNU General Public License v2.0 | 5 votes |
@TargetApi(19) @SuppressWarnings("ResourceType") private static CaptionStyleCompat createFromCaptionStyleV19( CaptioningManager.CaptionStyle captionStyle) { return new CaptionStyleCompat( captionStyle.foregroundColor, captionStyle.backgroundColor, Color.TRANSPARENT, captionStyle.edgeType, captionStyle.edgeColor, captionStyle.getTypeface()); }
Example #7
Source File: CaptionStyleCompat.java From Telegram-FOSS with GNU General Public License v2.0 | 5 votes |
/** * Creates a {@link CaptionStyleCompat} equivalent to a provided {@link CaptionStyle}. * * @param captionStyle A {@link CaptionStyle}. * @return The equivalent {@link CaptionStyleCompat}. */ @TargetApi(19) public static CaptionStyleCompat createFromCaptionStyle( CaptioningManager.CaptionStyle captionStyle) { if (Util.SDK_INT >= 21) { return createFromCaptionStyleV21(captionStyle); } else { // Note - Any caller must be on at least API level 19 or greater (because CaptionStyle did // not exist in earlier API levels). return createFromCaptionStyleV19(captionStyle); } }
Example #8
Source File: CaptionStyleCompat.java From Exoplayer_VLC with Apache License 2.0 | 5 votes |
@TargetApi(21) private static CaptionStyleCompat createFromCaptionStyleV21( CaptioningManager.CaptionStyle captionStyle) { return null; /*CaptionStyleCompat( captionStyle.hasForegroundColor() ? captionStyle.foregroundColor : DEFAULT.foregroundColor, captionStyle.hasBackgroundColor() ? captionStyle.backgroundColor : DEFAULT.backgroundColor, captionStyle.hasWindowColor() ? captionStyle.windowColor : DEFAULT.windowColor, captionStyle.hasEdgeType() ? captionStyle.edgeType : DEFAULT.edgeType, captionStyle.hasEdgeColor() ? captionStyle.edgeColor : DEFAULT.edgeColor, captionStyle.getTypeface());*/ }
Example #9
Source File: CaptionStyleCompat.java From Exoplayer_VLC with Apache License 2.0 | 5 votes |
@TargetApi(19) private static CaptionStyleCompat createFromCaptionStyleV19( CaptioningManager.CaptionStyle captionStyle) { return new CaptionStyleCompat( captionStyle.foregroundColor, captionStyle.backgroundColor, Color.TRANSPARENT, captionStyle.edgeType, captionStyle.edgeColor, captionStyle.getTypeface()); }
Example #10
Source File: CaptionStyleCompat.java From Exoplayer_VLC with Apache License 2.0 | 5 votes |
/** * Creates a {@link CaptionStyleCompat} equivalent to a provided {@link CaptionStyle}. * * @param captionStyle A {@link CaptionStyle}. * @return The equivalent {@link CaptionStyleCompat}. */ @TargetApi(19) public static CaptionStyleCompat createFromCaptionStyle( CaptioningManager.CaptionStyle captionStyle) { if (Util.SDK_INT >= 21) { return createFromCaptionStyleV21(captionStyle); } else { // Note - Any caller must be on at least API level 19 or greater (because CaptionStyle did // not exist in earlier API levels). return createFromCaptionStyleV19(captionStyle); } }
Example #11
Source File: CaptioningChangeDelegate.java From 365browser with Apache License 2.0 | 5 votes |
/** * Create a {@link ClosedCaptionEdgeAttribute} object based on the type number. * * @param type The edge type value specified by the user * @param color The color of the edge (e.g. "red") * @return The enum object */ public static ClosedCaptionEdgeAttribute fromSystemEdgeAttribute(Integer type, String color) { if (type == null) { return NONE; } if (color == null || color.isEmpty()) { sEdgeColor = sDefaultEdgeColor; } else { sEdgeColor = color; } // Lollipop adds support for EDGE_TYPE_DEPRESSED and EDGE_TYPE_RAISED. switch (type) { case CaptionStyle.EDGE_TYPE_OUTLINE: return OUTLINE; case CaptionStyle.EDGE_TYPE_DROP_SHADOW: return DROP_SHADOW; case CaptionStyle.EDGE_TYPE_RAISED: return RAISED; case CaptionStyle.EDGE_TYPE_DEPRESSED: return DEPRESSED; default: // CaptionStyle.EDGE_TYPE_NONE // CaptionStyle.EDGE_TYPE_UNSPECIFIED return NONE; } }
Example #12
Source File: CaptioningStyle.java From 365browser with Apache License 2.0 | 5 votes |
/** * Converts from a platform CaptionStyle to a Chromium CaptioningStyle. In the case that null * is passed in, a CaptioningStyle that includes no settings is returned. * This is safe to call on KitKat. * * KitKat CaptionStyle supported neither windowColor nor a few enum values of edgeType. * * @param captionStyle an Android platform CaptionStyle object * @return a Chromium CaptioningStyle object */ @SuppressLint("NewApi") public static CaptioningStyle createFrom(CaptionStyle captionStyle) { if (captionStyle == null) { return new CaptioningStyle(null, null, null, null, null, null); } Integer backgroundColor = null; Integer edgeColor = null; Integer edgeType = null; Integer foregroundColor = null; Integer windowColor = null; if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) { if (captionStyle.hasBackgroundColor()) { backgroundColor = Integer.valueOf(captionStyle.backgroundColor); } if (captionStyle.hasEdgeColor()) { edgeColor = Integer.valueOf(captionStyle.edgeColor); } if (captionStyle.hasEdgeType()) { edgeType = Integer.valueOf(captionStyle.edgeType); } if (captionStyle.hasForegroundColor()) { foregroundColor = Integer.valueOf(captionStyle.foregroundColor); } if (captionStyle.hasWindowColor()) { windowColor = Integer.valueOf(captionStyle.windowColor); } } else { backgroundColor = Integer.valueOf(captionStyle.backgroundColor); edgeColor = Integer.valueOf(captionStyle.edgeColor); edgeType = Integer.valueOf(captionStyle.edgeType); foregroundColor = Integer.valueOf(captionStyle.foregroundColor); } return new CaptioningStyle(backgroundColor, edgeColor, edgeType, foregroundColor, windowColor, captionStyle.getTypeface()); }
Example #13
Source File: CaptionStyleCompat.java From MediaSDK with Apache License 2.0 | 5 votes |
/** * Creates a {@link CaptionStyleCompat} equivalent to a provided {@link CaptionStyle}. * * @param captionStyle A {@link CaptionStyle}. * @return The equivalent {@link CaptionStyleCompat}. */ @TargetApi(19) public static CaptionStyleCompat createFromCaptionStyle( CaptionStyle captionStyle) { if (Util.SDK_INT >= 21) { return createFromCaptionStyleV21(captionStyle); } else { // Note - Any caller must be on at least API level 19 or greater (because CaptionStyle did // not exist in earlier API levels). return createFromCaptionStyleV19(captionStyle); } }
Example #14
Source File: CaptionStyleCompat.java From K-Sonic with MIT License | 5 votes |
@TargetApi(19) @SuppressWarnings("ResourceType") private static CaptionStyleCompat createFromCaptionStyleV19( CaptioningManager.CaptionStyle captionStyle) { return new CaptionStyleCompat( captionStyle.foregroundColor, captionStyle.backgroundColor, Color.TRANSPARENT, captionStyle.edgeType, captionStyle.edgeColor, captionStyle.getTypeface()); }
Example #15
Source File: CaptionStyleCompat.java From K-Sonic with MIT License | 5 votes |
/** * Creates a {@link CaptionStyleCompat} equivalent to a provided {@link CaptionStyle}. * * @param captionStyle A {@link CaptionStyle}. * @return The equivalent {@link CaptionStyleCompat}. */ @TargetApi(19) public static CaptionStyleCompat createFromCaptionStyle( CaptioningManager.CaptionStyle captionStyle) { if (Util.SDK_INT >= 21) { return createFromCaptionStyleV21(captionStyle); } else { // Note - Any caller must be on at least API level 19 or greater (because CaptionStyle did // not exist in earlier API levels). return createFromCaptionStyleV19(captionStyle); } }
Example #16
Source File: CaptionStyleCompat.java From TelePlus-Android with GNU General Public License v2.0 | 5 votes |
@TargetApi(21) @SuppressWarnings("ResourceType") private static CaptionStyleCompat createFromCaptionStyleV21( CaptioningManager.CaptionStyle captionStyle) { return new CaptionStyleCompat( captionStyle.hasForegroundColor() ? captionStyle.foregroundColor : DEFAULT.foregroundColor, captionStyle.hasBackgroundColor() ? captionStyle.backgroundColor : DEFAULT.backgroundColor, captionStyle.hasWindowColor() ? captionStyle.windowColor : DEFAULT.windowColor, captionStyle.hasEdgeType() ? captionStyle.edgeType : DEFAULT.edgeType, captionStyle.hasEdgeColor() ? captionStyle.edgeColor : DEFAULT.edgeColor, captionStyle.getTypeface()); }
Example #17
Source File: CaptionStyleCompat.java From TelePlus-Android with GNU General Public License v2.0 | 5 votes |
@TargetApi(19) @SuppressWarnings("ResourceType") private static CaptionStyleCompat createFromCaptionStyleV19( CaptioningManager.CaptionStyle captionStyle) { return new CaptionStyleCompat( captionStyle.foregroundColor, captionStyle.backgroundColor, Color.TRANSPARENT, captionStyle.edgeType, captionStyle.edgeColor, captionStyle.getTypeface()); }
Example #18
Source File: CaptionStyleCompat.java From TelePlus-Android with GNU General Public License v2.0 | 5 votes |
/** * Creates a {@link CaptionStyleCompat} equivalent to a provided {@link CaptionStyle}. * * @param captionStyle A {@link CaptionStyle}. * @return The equivalent {@link CaptionStyleCompat}. */ @TargetApi(19) public static CaptionStyleCompat createFromCaptionStyle( CaptioningManager.CaptionStyle captionStyle) { if (Util.SDK_INT >= 21) { return createFromCaptionStyleV21(captionStyle); } else { // Note - Any caller must be on at least API level 19 or greater (because CaptionStyle did // not exist in earlier API levels). return createFromCaptionStyleV19(captionStyle); } }
Example #19
Source File: CaptionStyleCompat.java From TelePlus-Android with GNU General Public License v2.0 | 5 votes |
@TargetApi(21) @SuppressWarnings("ResourceType") private static CaptionStyleCompat createFromCaptionStyleV21( CaptioningManager.CaptionStyle captionStyle) { return new CaptionStyleCompat( captionStyle.hasForegroundColor() ? captionStyle.foregroundColor : DEFAULT.foregroundColor, captionStyle.hasBackgroundColor() ? captionStyle.backgroundColor : DEFAULT.backgroundColor, captionStyle.hasWindowColor() ? captionStyle.windowColor : DEFAULT.windowColor, captionStyle.hasEdgeType() ? captionStyle.edgeType : DEFAULT.edgeType, captionStyle.hasEdgeColor() ? captionStyle.edgeColor : DEFAULT.edgeColor, captionStyle.getTypeface()); }
Example #20
Source File: CaptionStyleCompat.java From TelePlus-Android with GNU General Public License v2.0 | 5 votes |
@TargetApi(19) @SuppressWarnings("ResourceType") private static CaptionStyleCompat createFromCaptionStyleV19( CaptioningManager.CaptionStyle captionStyle) { return new CaptionStyleCompat( captionStyle.foregroundColor, captionStyle.backgroundColor, Color.TRANSPARENT, captionStyle.edgeType, captionStyle.edgeColor, captionStyle.getTypeface()); }
Example #21
Source File: CaptionStyleCompat.java From TelePlus-Android with GNU General Public License v2.0 | 5 votes |
/** * Creates a {@link CaptionStyleCompat} equivalent to a provided {@link CaptionStyle}. * * @param captionStyle A {@link CaptionStyle}. * @return The equivalent {@link CaptionStyleCompat}. */ @TargetApi(19) public static CaptionStyleCompat createFromCaptionStyle( CaptioningManager.CaptionStyle captionStyle) { if (Util.SDK_INT >= 21) { return createFromCaptionStyleV21(captionStyle); } else { // Note - Any caller must be on at least API level 19 or greater (because CaptionStyle did // not exist in earlier API levels). return createFromCaptionStyleV19(captionStyle); } }
Example #22
Source File: CaptionStyleCompat.java From MediaSDK with Apache License 2.0 | 5 votes |
@TargetApi(21) @SuppressWarnings("ResourceType") private static CaptionStyleCompat createFromCaptionStyleV21( CaptionStyle captionStyle) { return new CaptionStyleCompat( captionStyle.hasForegroundColor() ? captionStyle.foregroundColor : DEFAULT.foregroundColor, captionStyle.hasBackgroundColor() ? captionStyle.backgroundColor : DEFAULT.backgroundColor, captionStyle.hasWindowColor() ? captionStyle.windowColor : DEFAULT.windowColor, captionStyle.hasEdgeType() ? captionStyle.edgeType : DEFAULT.edgeType, captionStyle.hasEdgeColor() ? captionStyle.edgeColor : DEFAULT.edgeColor, captionStyle.getTypeface()); }
Example #23
Source File: CaptionStyleCompat.java From MediaSDK with Apache License 2.0 | 5 votes |
@TargetApi(19) @SuppressWarnings("ResourceType") private static CaptionStyleCompat createFromCaptionStyleV19( CaptionStyle captionStyle) { return new CaptionStyleCompat( captionStyle.foregroundColor, captionStyle.backgroundColor, Color.TRANSPARENT, captionStyle.edgeType, captionStyle.edgeColor, captionStyle.getTypeface()); }