本文整理汇总了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;
}
示例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);
}
示例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);
}
示例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);
}