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


Java SimpleDraweeView.getLayoutParams方法代码示例

本文整理汇总了Java中com.facebook.drawee.view.SimpleDraweeView.getLayoutParams方法的典型用法代码示例。如果您正苦于以下问题:Java SimpleDraweeView.getLayoutParams方法的具体用法?Java SimpleDraweeView.getLayoutParams怎么用?Java SimpleDraweeView.getLayoutParams使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.facebook.drawee.view.SimpleDraweeView的用法示例。


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

示例1: onDependentViewChanged

import com.facebook.drawee.view.SimpleDraweeView; //导入方法依赖的package包/类
@Override
public boolean onDependentViewChanged(CoordinatorLayout parent, SimpleDraweeView child, View dependency) {
    maybeInitProperties(child, dependency);

    final int maxScrollDistance = (int) (mStartToolbarPosition - getStatusBarHeight());
    float expandedPercentageFactor = dependency.getY() / maxScrollDistance;

    float distanceYToSubtract = ((mStartYPosition - mFinalYPosition)
            * (1f - expandedPercentageFactor)) + (child.getHeight()/2);

    float distanceXToSubtract = ((mStartXPosition - mFinalXPosition)
            * (1f - expandedPercentageFactor)) + (child.getWidth()/2);

    float heightToSubtract = ((mStartHeight - finalHeight) * (1f - expandedPercentageFactor));

    child.setY(mStartYPosition - distanceYToSubtract);
    child.setX(mStartXPosition - distanceXToSubtract);

    int proportionalAvatarSize = (int) (mAvatarMaxSize * (expandedPercentageFactor));

    CoordinatorLayout.LayoutParams lp = (CoordinatorLayout.LayoutParams) child.getLayoutParams();
    lp.width = (int) (mStartHeight - heightToSubtract);
    lp.height = (int) (mStartHeight - heightToSubtract);
    child.setLayoutParams(lp);
    return true;
}
 
开发者ID:picopalette,项目名称:event-me,代码行数:27,代码来源:ImageBehaviour.java

示例2: changeImageSize

import com.facebook.drawee.view.SimpleDraweeView; //导入方法依赖的package包/类
/**
 * 改变图片的尺寸
 *
 * @param imageInfo 获取的图片信息
 * @param maxWidth  可显示的最大宽度
 * @param view      图片对象
 */
private static void changeImageSize(ImageInfo imageInfo, int maxWidth, SimpleDraweeView view) {
    int height = imageInfo.getHeight();
    int width = imageInfo.getWidth();
    float scaleWidth = (float) maxWidth / width;
    int realHeight = (int) (height * scaleWidth);
    int realWidth = (int) (width * scaleWidth);
    ViewGroup.LayoutParams params = view.getLayoutParams();
    params.height = realHeight;
    params.width = realWidth;
    view.setLayoutParams(params);
}
 
开发者ID:zhonglikui,项目名称:cardinalsSample,代码行数:19,代码来源:FrescoManager.java

示例3: setFresco

import com.facebook.drawee.view.SimpleDraweeView; //导入方法依赖的package包/类
private void setFresco(SimpleDraweeView simpleDraweeView, AlbumInfo albumInfo, int width, boolean isGif) {
    if (albumInfo.getWidth() != null && albumInfo.getHeight() != null) {
        if (isGif)
            simpleDraweeView.setImageURI(albumInfo.getPicUrl());
        else
            simpleDraweeView.setImageURI(albumInfo.getGifThumbUrl());
        ViewGroup.LayoutParams l = simpleDraweeView.getLayoutParams();
        l.width = albumInfo.getWidth();
        l.height = albumInfo.getHeight();
        simpleDraweeView.setLayoutParams(l);
    } else
        FrescoUtil.setControllerListener(simpleDraweeView, albumInfo, width, isGif);

}
 
开发者ID:lanyuanxiaoyao,项目名称:PicKing,代码行数:15,代码来源:ContentsAdapter.java

示例4: addSimpleDraweeView

import com.facebook.drawee.view.SimpleDraweeView; //导入方法依赖的package包/类
private void addSimpleDraweeView(SimpleDraweeView view, int width, int height) {
    ViewGroup.LayoutParams params = view.getLayoutParams();
    if (params == null) {
        params = new ViewGroup.LayoutParams(width, height);
    }
    params.width = width;
    params.height = height;
    view.setLayoutParams(params);
    contentLayout.addView(view);
}
 
开发者ID:mingdroid,项目名称:tumbviewer,代码行数:11,代码来源:PhotoPostVH.java


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