当前位置: 首页>>代码示例>>Java>>正文


Java RoundedTransformationBuilder类代码示例

本文整理汇总了Java中com.makeramen.roundedimageview.RoundedTransformationBuilder的典型用法代码示例。如果您正苦于以下问题:Java RoundedTransformationBuilder类的具体用法?Java RoundedTransformationBuilder怎么用?Java RoundedTransformationBuilder使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


RoundedTransformationBuilder类属于com.makeramen.roundedimageview包,在下文中一共展示了RoundedTransformationBuilder类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getTransformation

import com.makeramen.roundedimageview.RoundedTransformationBuilder; //导入依赖的package包/类
private static Transformation getTransformation(Context context) {
    if (PICASSO_CIRCLE_TRANSFORMATION == null) {
        final int color;
        if (Build.VERSION.SDK_INT < Build.VERSION_CODES.M) {
            color = context.getResources().getColor(R.color.black);
        } else {
            color = context.getColor(R.color.black);
        }
        PICASSO_CIRCLE_TRANSFORMATION = new RoundedTransformationBuilder()
                .borderColor(color)
                .borderWidthDp(2)
                .scaleType(ImageView.ScaleType.CENTER_CROP)
                .oval(true)
                .build();
    }
    return PICASSO_CIRCLE_TRANSFORMATION;
}
 
开发者ID:lecho,项目名称:conference-app,代码行数:18,代码来源:Utils.java

示例2: getCircleTransformation

import com.makeramen.roundedimageview.RoundedTransformationBuilder; //导入依赖的package包/类
/**
 * Get circle transformation
 * @param borderWidth in dp
 * @param borderColor color of the border
 */
public static Transformation getCircleTransformation(int borderWidth, int borderColor) {
    return new RoundedTransformationBuilder()
            .oval(true)
            .borderWidthDp(borderWidth)
            .borderColor(borderColor)
            .build();
}
 
开发者ID:chthai64,项目名称:overscroll-bouncy-android,代码行数:13,代码来源:ImageUtil.java

示例3: getCircleTransformationNoBorder

import com.makeramen.roundedimageview.RoundedTransformationBuilder; //导入依赖的package包/类
/**
 * Get circle transformation without border
 */
public static Transformation getCircleTransformationNoBorder() {
    return new RoundedTransformationBuilder()
            .oval(true)
            .build();
}
 
开发者ID:chthai64,项目名称:overscroll-bouncy-android,代码行数:9,代码来源:ImageUtil.java

示例4: getRoundedTransformation

import com.makeramen.roundedimageview.RoundedTransformationBuilder; //导入依赖的package包/类
public static Transformation getRoundedTransformation(Context context)
{
    return new RoundedTransformationBuilder()
            .borderColor(context.getResources().getColor(R.color.divider_translucent)).borderWidthDp(1)
            .cornerRadiusDp(48).oval(true).build();
}
 
开发者ID:Alfresco,项目名称:activiti-android-app,代码行数:7,代码来源:RenditionManager.java

示例5: roundedTransformation

import com.makeramen.roundedimageview.RoundedTransformationBuilder; //导入依赖的package包/类
public RoundedTransformationBuilder roundedTransformation() {
  return new RoundedTransformationBuilder();
}
 
开发者ID:ogaclejapan,项目名称:Qiitanium,代码行数:4,代码来源:PicassoHelper.java


注:本文中的com.makeramen.roundedimageview.RoundedTransformationBuilder类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。