Java Code Examples for android.view.View#setOutlineProvider()

The following examples show how to use android.view.View#setOutlineProvider() . 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: SeekBarCompatDontCrash.java    From discreteSeekBar with Apache License 2.0 5 votes vote down vote up
public static void setOutlineProvider(View marker, final MarkerDrawable markerDrawable) {
    marker.setOutlineProvider(new ViewOutlineProvider() {
        @Override
        public void getOutline(View view, Outline outline) {
            outline.setConvexPath(markerDrawable.getPath());
        }
    });
}
 
Example 2
Source File: SeekBarCompatDontCrash.java    From Sky31Radio with Apache License 2.0 5 votes vote down vote up
public static void setOutlineProvider(View marker, final MarkerDrawable markerDrawable) {
    marker.setOutlineProvider(new ViewOutlineProvider() {
        @Override
        public void getOutline(View view, Outline outline) {
            outline.setConvexPath(markerDrawable.getPath());
        }
    });
}
 
Example 3
Source File: SeekBarCompatDontCrash.java    From SwipeBack with GNU General Public License v3.0 5 votes vote down vote up
public static void setOutlineProvider(View marker, final MarkerDrawable markerDrawable) {
    marker.setOutlineProvider(new ViewOutlineProvider() {
        @Override
        public void getOutline(View view, Outline outline) {
            outline.setConvexPath(markerDrawable.getPath());
        }
    });
}
 
Example 4
Source File: PingerAdapter.java    From friendlyping with Apache License 2.0 5 votes vote down vote up
private View initializeConvertView(ViewGroup parent) {
    View convertView;
    final View view = mLayoutInflater.inflate(R.layout.pinger_item_view, parent, false);
    convertView = view;
    convertView.setTag(R.id.name, view.findViewById(R.id.name));
    final View tmpProfilePicture = view.findViewById(R.id.profile_picture);
    // OutlineProviders are available from API 21 onwards.
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
        tmpProfilePicture.setClipToOutline(true);
        tmpProfilePicture.setOutlineProvider(new PingerOutlineProvider());
    }
    convertView.setTag(R.id.profile_picture, tmpProfilePicture);
    return convertView;
}
 
Example 5
Source File: SeekBarCompatDontCrash.java    From FuAgoraDemoDroid with MIT License 5 votes vote down vote up
public static void setOutlineProvider(View marker, final MarkerDrawable markerDrawable) {
    marker.setOutlineProvider(new ViewOutlineProvider() {
        @Override
        public void getOutline(View view, Outline outline) {
            outline.setConvexPath(markerDrawable.getPath());
        }
    });
}
 
Example 6
Source File: SeekBarCompatDontCrash.java    From IdealMedia with Apache License 2.0 5 votes vote down vote up
public static void setOutlineProvider(View marker, final MarkerDrawable markerDrawable) {
    marker.setOutlineProvider(new ViewOutlineProvider() {
        @Override
        public void getOutline(View view, Outline outline) {
            outline.setConvexPath(markerDrawable.getPath());
        }
    });
}
 
Example 7
Source File: SeekBarCompatDontCrash.java    From UltimateAndroid with Apache License 2.0 5 votes vote down vote up
public static void setOutlineProvider(View marker, final MarkerDrawable markerDrawable) {
    marker.setOutlineProvider(new ViewOutlineProvider() {
        @Override
        public void getOutline(View view, Outline outline) {
            outline.setConvexPath(markerDrawable.getPath());
        }
    });
}
 
Example 8
Source File: UiCompatNotCrash.java    From Genius-Android with Apache License 2.0 5 votes vote down vote up
static void setOutlineProvider(View marker, final BalloonMarkerDrawable balloonMarkerDrawable) {
    marker.setOutlineProvider(new ViewOutlineProvider() {
        @Override
        public void getOutline(View view, Outline outline) {
            outline.setConvexPath(balloonMarkerDrawable.getPath());
        }
    });
}
 
Example 9
Source File: SeekBarCompatDontCrash.java    From Musicoco with Apache License 2.0 5 votes vote down vote up
public static void setOutlineProvider(View marker, final MarkerDrawable markerDrawable) {
    marker.setOutlineProvider(new ViewOutlineProvider() {
        @Override
        public void getOutline(View view, Outline outline) {
            outline.setConvexPath(markerDrawable.getPath());
        }
    });
}
 
Example 10
Source File: SeekBarCompatDontCrash.java    From PLDroidShortVideo with Apache License 2.0 5 votes vote down vote up
public static void setOutlineProvider(View marker, final MarkerDrawable markerDrawable) {
    marker.setOutlineProvider(new ViewOutlineProvider() {
        @Override
        public void getOutline(View view, Outline outline) {
            outline.setConvexPath(markerDrawable.getPath());
        }
    });
}
 
Example 11
Source File: SeekBarCompatDontCrash.java    From android-open-project-demo with Apache License 2.0 5 votes vote down vote up
public static void setOutlineProvider(View marker, final MarkerDrawable markerDrawable) {
    marker.setOutlineProvider(new ViewOutlineProvider() {
        @Override
        public void getOutline(View view, Outline outline) {
            outline.setConvexPath(markerDrawable.getPath());
        }
    });
}
 
Example 12
Source File: SeekBarCompatDontCrash.java    From Panoramic-Screenshot with GNU General Public License v3.0 5 votes vote down vote up
public static void setOutlineProvider(View marker, final MarkerDrawable markerDrawable) {
    marker.setOutlineProvider(new ViewOutlineProvider() {
        @Override
        public void getOutline(View view, Outline outline) {
            outline.setConvexPath(markerDrawable.getPath());
        }
    });
}
 
Example 13
Source File: ViewOutlineProviderCompatUtilsLXX.java    From simple-keyboard with Apache License 2.0 4 votes vote down vote up
public InsetsOutlineProvider(final View view) {
    mView = view;
    view.setOutlineProvider(this);
}
 
Example 14
Source File: ViewOutlineProviderCompatUtilsLXX.java    From AOSP-Kayboard-7.1.2 with Apache License 2.0 4 votes vote down vote up
static InsetsUpdater setInsetsOutlineProvider(final View view) {
    final InsetsOutlineProvider provider = new InsetsOutlineProvider(view);
    view.setOutlineProvider(provider);
    return provider;
}
 
Example 15
Source File: RoundedRectHelperApi21.java    From adt-leanback-support with Apache License 2.0 4 votes vote down vote up
public static void clearBackground(View view) {
    view.setBackground(null);
    view.setOutlineProvider(ViewOutlineProvider.BACKGROUND);
    view.setClipToOutline(false);
}
 
Example 16
Source File: MountState.java    From litho with Apache License 2.0 4 votes vote down vote up
private static void setOutlineProvider(View view, ViewOutlineProvider outlineProvider) {
  if (outlineProvider != null && Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
    view.setOutlineProvider(outlineProvider);
  }
}
 
Example 17
Source File: LayoutHelper.java    From DanDanPlayForAndroid with MIT License 4 votes vote down vote up
@Override
public void setRadiusAndShadow(int radius, @ILayout.HideRadiusSide int hideRadiusSide, int shadowElevation, float shadowAlpha) {
    View owner = mOwner.get();
    if (owner == null) {
        return;
    }

    mRadius = radius;
    mHideRadiusSide = hideRadiusSide;

    if (mRadius > 0) {
        if (hideRadiusSide == HIDE_RADIUS_SIDE_TOP) {
            mRadiusArray = new float[]{0, 0, 0, 0, mRadius, mRadius, mRadius, mRadius};
        } else if (hideRadiusSide == HIDE_RADIUS_SIDE_RIGHT) {
            mRadiusArray = new float[]{mRadius, mRadius, 0, 0, 0, 0, mRadius, mRadius};
        } else if (hideRadiusSide == HIDE_RADIUS_SIDE_BOTTOM) {
            mRadiusArray = new float[]{mRadius, mRadius, mRadius, mRadius, 0, 0, 0, 0};
        } else if (hideRadiusSide == HIDE_RADIUS_SIDE_LEFT) {
            mRadiusArray = new float[]{0, 0, mRadius, mRadius, mRadius, mRadius, 0, 0};
        } else {
            mRadiusArray = null;
        }
    }

    mShadowElevation = shadowElevation;
    mShadowAlpha = shadowAlpha;
    if (useFeature()) {
        if (mShadowElevation == 0 || isRadiusWithSideHidden()) {
            owner.setElevation(0);
        } else {
            owner.setElevation(mShadowElevation);
        }

        owner.setOutlineProvider(new ViewOutlineProvider() {
            @Override
            @TargetApi(21)
            public void getOutline(View view, Outline outline) {
                int w = view.getWidth(), h = view.getHeight();
                if (w == 0 || h == 0) {
                    return;
                }
                if (isRadiusWithSideHidden()) {
                    int left = 0, top = 0, right = w, bottom = h;
                    if (mHideRadiusSide == HIDE_RADIUS_SIDE_LEFT) {
                        left -= mRadius;
                    } else if (mHideRadiusSide == HIDE_RADIUS_SIDE_TOP) {
                        top -= mRadius;
                    } else if (mHideRadiusSide == HIDE_RADIUS_SIDE_RIGHT) {
                        right += mRadius;
                    } else if (mHideRadiusSide == HIDE_RADIUS_SIDE_BOTTOM) {
                        bottom += mRadius;
                    }
                    outline.setRoundRect(left, top,
                            right, bottom, mRadius);
                    return;
                }

                int top = mOutlineInsetTop, bottom = Math.max(top + 1, h - mOutlineInsetBottom),
                        left = mOutlineInsetLeft, right = w - mOutlineInsetRight;
                if (mIsOutlineExcludePadding) {
                    left += view.getPaddingLeft();
                    top += view.getPaddingTop();
                    right = Math.max(left + 1, right - view.getPaddingRight());
                    bottom = Math.max(top + 1, bottom - view.getPaddingBottom());
                }
                outline.setAlpha(mShadowAlpha);
                if (mRadius <= 0) {
                    outline.setRect(left, top,
                            right, bottom);
                } else {
                    outline.setRoundRect(left, top,
                            right, bottom, mRadius);
                }
            }
        });

        owner.setClipToOutline(mRadius > 0);

    }
    owner.invalidate();
}
 
Example 18
Source File: AMViewCompat.java    From ProjectX with Apache License 2.0 4 votes vote down vote up
@Override
public void setOutlineProvider(View view, ViewOutlineProvider provider) {
    view.setOutlineProvider(new ViewOutlineProviderLollipop(provider));
}
 
Example 19
Source File: ViewUtilsLollipop.java    From material-components-android with Apache License 2.0 4 votes vote down vote up
static void setBoundsViewOutlineProvider(@NonNull View view) {
  view.setOutlineProvider(ViewOutlineProvider.BOUNDS);
}
 
Example 20
Source File: ViewOtherAnimationBuilder.java    From scene with Apache License 2.0 4 votes vote down vote up
@Override
public void set(View object, final Float value) {
    this.mValue = value;
    object.setOutlineProvider(mViewOutlineProvider);
}