本文整理汇总了Java中com.facebook.drawee.view.SimpleDraweeView.setLayoutParams方法的典型用法代码示例。如果您正苦于以下问题:Java SimpleDraweeView.setLayoutParams方法的具体用法?Java SimpleDraweeView.setLayoutParams怎么用?Java SimpleDraweeView.setLayoutParams使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.facebook.drawee.view.SimpleDraweeView
的用法示例。
在下文中一共展示了SimpleDraweeView.setLayoutParams方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的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);
}
示例5: createImageView
import com.facebook.drawee.view.SimpleDraweeView; //导入方法依赖的package包/类
private ImageView createImageView(int position, final boolean isMultiImage) {
ImageList imageList = imagesList.get(position);
SimpleDraweeView simpleDraweeView = new SimpleDraweeView(getContext());
if(isMultiImage){
simpleDraweeView.setScaleType(ScaleType.CENTER_CROP);
simpleDraweeView.setLayoutParams(position % MAX_PER_ROW_COUNT == 0 ?moreParaColumnFirst : morePara);
}else {
simpleDraweeView.setAdjustViewBounds(true);
simpleDraweeView.setScaleType(ScaleType.CENTER_INSIDE);
//imageView.setMaxHeight(pxOneMaxWandH);
int expectW = imageList.getWidth();
int expectH = imageList.getHeight();
if(expectW == 0 || expectH == 0){
simpleDraweeView.setLayoutParams(onePicPara);
}else{
int actualW = 0;
int actualH = 0;
float scale = ((float) expectH)/((float) expectW);
if(expectW > pxOneMaxWandH){
actualW = pxOneMaxWandH;
actualH = (int)(actualW * scale);
} else if(expectW < pxMoreWandH){
actualW = pxMoreWandH;
actualH = (int)(actualW * scale);
}else{
actualW = expectW;
actualH = expectH;
}
simpleDraweeView.setLayoutParams(new LayoutParams(actualW, actualH));
}
}
simpleDraweeView.setId(imageList.getUrl().hashCode());
simpleDraweeView.setOnClickListener(new ImageOnClickListener(position));
simpleDraweeView.setBackgroundResource(R.mipmap.list_default);
simpleDraweeView.setImageURI(Uri.parse(imageList.getUrl()));
return simpleDraweeView;
}
示例6: init
import com.facebook.drawee.view.SimpleDraweeView; //导入方法依赖的package包/类
private void init(Context context) {
showTimeoutMs = DEFAULT_SHOW_TIMEOUT_MS;
formatBuilder = new StringBuilder();
formatter = new Formatter(formatBuilder, Locale.getDefault());
currentWindow = new Timeline.Window();
componentListener = new ComponentListener();
LayoutInflater.from(context).inflate(R.layout.item_video_control, this);
controlLayout = (LinearLayout) findViewById(R.id.video_control_layout);
time = (TextView) findViewById(R.id.time);
timeCurrent = (TextView) findViewById(R.id.time_current);
fullscreen = (ImageView) findViewById(R.id.video_fullscreen);
fullscreen.setOnClickListener(componentListener);
progressBar = (SeekBar) findViewById(R.id.video_controller_progress);
progressBar.setOnSeekBarChangeListener(componentListener);
progressBar.setMax(PROGRESS_BAR_MAX);
videoView = new TextureView(context);
FrameLayout.LayoutParams videoParams = new FrameLayout.LayoutParams(
ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT);
videoView.setLayoutParams(videoParams);
videoView.setOnClickListener(componentListener);
thumbnailView = new SimpleDraweeView(context);
FrameLayout.LayoutParams thumbParams = new FrameLayout.LayoutParams(
ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT);
GenericDraweeHierarchy hierarchy = new GenericDraweeHierarchyBuilder(getResources())
.setPlaceholderImage(R.color.loading_color)
.build();
thumbnailView.setHierarchy(hierarchy);
thumbnailView.setLayoutParams(thumbParams);
loadingBar = new ProgressBar(context, null, android.R.attr.progressBarStyle);
FrameLayout.LayoutParams loadingParams = new FrameLayout.LayoutParams(
ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);
loadingParams.gravity = Gravity.CENTER;
loadingBar.setLayoutParams(loadingParams);
loadingBar.setVisibility(GONE);
playView = new ImageView(context);
FrameLayout.LayoutParams playParams = new FrameLayout.LayoutParams(
ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);
playParams.gravity = Gravity.CENTER;
playView.setLayoutParams(playParams);
int padding = (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, 24,
context.getResources().getDisplayMetrics());
playView.setPadding(padding, padding, padding, padding);
playView.setOnClickListener(componentListener);
// setOnClickListener(componentListener);
leftTime = new TextView(context);
FrameLayout.LayoutParams leftParams = new FrameLayout.LayoutParams(
ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);
leftParams.gravity = Gravity.BOTTOM;
leftParams.bottomMargin = padding / 2;
leftParams.leftMargin = padding / 2;
leftTime.setLayoutParams(leftParams);
leftTime.setTextColor(Color.WHITE);
leftTime.setVisibility(GONE);
addView(videoView, 0);
addView(thumbnailView, 1);
addView(loadingBar, 2);
addView(playView, 3);
addView(leftTime, 4);
}