本文整理了Java中android.widget.ImageView.getMaxHeight()
方法的一些代码示例,展示了ImageView.getMaxHeight()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ImageView.getMaxHeight()
方法的具体详情如下:
包路径:android.widget.ImageView
类名称:ImageView
方法名:getMaxHeight
暂无
代码示例来源:origin: dividiti/crowdsource-video-experiments-on-android
private void updateImageView(String imagePath) {
if (imagePath != null) {
try {
Bitmap bmp = decodeSampledBitmapFromResource(imagePath, imageView.getMaxWidth(), imageView.getMaxHeight());
imageView.setVisibility(View.VISIBLE);
imageView.setEnabled(true);
imageView.setImageBitmap(bmp);
bmp = null;
} catch (Exception e) {
AppLogger.logMessage("Error on drawing image " + e.getLocalizedMessage());
}
}
}
代码示例来源:origin: dividiti/crowdsource-video-experiments-on-android
private boolean updateImageViewFromFile(String imagePath) {
File file = new File(imagePath);
if (file.exists()) {
try {
Bitmap bmp = Utils.decodeSampledBitmapFromResource(imagePath, imageView.getMaxWidth(), imageView.getMaxHeight());
imageView.setVisibility(View.VISIBLE);
imageView.setEnabled(true);
imageView.setImageBitmap(bmp);
bmp = null;
return true;
} catch (Exception e) {
AppLogger.logMessage("Error on drawing image " + e.getLocalizedMessage());
}
} else {
AppLogger.logMessage("Warning image file does not exist " + imagePath);
}
return false;
}
代码示例来源:origin: jbruchanov/AnUitor
@Override
protected HashMap<String, Object> fillValues(View v, HashMap<String, Object> data, HashMap<String, Object> parentData) {
super.fillValues(v, data, parentData);
ImageView iv = (ImageView) v;
Matrix imageMatrix = iv.getImageMatrix();
data.put("ImageMatrix", imageMatrix != null ? imageMatrix.toShortString() : null);
data.put("ScaleType", String.valueOf(iv.getScaleType()));
data.put("Drawable:", String.valueOf(iv.getDrawable()));
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
data.put("OverlappingRendering", iv.hasOverlappingRendering());
data.put("AdjustViewBounds", iv.getAdjustViewBounds());
data.put("CropToPadding", iv.getCropToPadding());
data.put("ImageAlpha", iv.getImageAlpha());
data.put("MaxHeight", iv.getMaxHeight());
data.put("MaxWidth", iv.getMaxWidth());
}
if (Build.VERSION.SDK_INT >= VERSION_CODES.LOLLIPOP) {
data.put("ImageTintMode", String.valueOf(iv.getImageTintMode()));
}
return data;
}
}
代码示例来源:origin: stackoverflow.com
final ImageView iv_YourImage = (ImageView) findViewById(R.id.iv_imageview);
public boolean onTouch(View v, MotionEvent event){
int topParam = iv_YourImage.getPaddingTop();
int rightParam = iv_YourImage.getPaddingRight();
int maxTopParam = topParam+iv_YourImage.getMaxHeight();
int maxRightParam = rightParam + iv_YourImage.getMaxWidth();
if(event.getX>topParam&&event.getX<maxTopParam){
//the x coordinate is in your image... do the same to Y
}
return true;
}
代码示例来源:origin: stackoverflow.com
ImageView imageView = (ImageView) findViewById(R.id.iv_imageview);
imageView.setOnTouchListener(new OnTouchListener(){
@Override
public boolean onTouch(View v, MotionEvent event) {
int topParam = imageView.getPaddingTop();
int rightParam = imageView.getPaddingRight();
int maxTopParam = topParam+imageView.getMaxHeight();
int maxRightParam = rightParam + imageView.getMaxWidth();
if(event.getX>topParam&&event.getX<maxTopParam){
//the x coordinate is in your image... do the same to Y
}
});
return true;
}
内容来源于网络,如有侵权,请联系作者删除!