Searched defs:edgeType (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/com/android/internal/widget/
H A DSubtitleView.java166 public void setEdgeType(int edgeType) { argument
167 mEdgeType = edgeType;
279 mEdgeType = style.hasEdgeType() ? style.edgeType : defStyle.edgeType;
323 final int edgeType = mEdgeType;
324 if (edgeType == CaptionStyle.EDGE_TYPE_OUTLINE) {
333 } else if (edgeType == CaptionStyle.EDGE_TYPE_DROP_SHADOW) {
335 } else if (edgeType == CaptionStyle.EDGE_TYPE_RAISED
336 || edgeType == CaptionStyle.EDGE_TYPE_DEPRESSED) {
337 final boolean raised = edgeType
[all...]
/frameworks/base/core/java/android/view/accessibility/
H A DCaptioningManager.java317 public final int edgeType; field in class:CaptioningManager.CaptionStyle
342 private CaptionStyle(int foregroundColor, int backgroundColor, int edgeType, int edgeColor, argument
346 mHasEdgeType = edgeType != EDGE_TYPE_UNSPECIFIED;
354 this.edgeType = mHasEdgeType ? edgeType : EDGE_TYPE_NONE;
376 overlay.edgeType : edgeType;
454 final int edgeType = Secure.getInt(
455 cr, Secure.ACCESSIBILITY_CAPTIONING_EDGE_TYPE, defStyle.edgeType);
466 return new CaptionStyle(foregroundColor, backgroundColor, edgeType, edgeColo
[all...]

Completed in 50 milliseconds