336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
ImageView 에서 width를 화면으로 가득 채우고, 해당 Image에 따라 Height를 조절하고자 할 경우,
ImageView의 scaleType만으론 표현이 불가능하다.
이럴 경우 아래와 같이 ImageView를 커스텀화 해서 사용하자.
public class ResizableImageView extends ImageView {
public ResizableImageView(Context context, AttributeSet attrs) {
super(context, attrs);
}
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec){
Drawable d = getDrawable();
if(d!=null){
// ceil not round - avoid thin vertical gaps along the left/right edges
int width = MeasureSpec.getSize(widthMeasureSpec);
int height = (int) Math.ceil((float) width * (float) d.getIntrinsicHeight() / (float) d.getIntrinsicWidth());
setMeasuredDimension(width, height);
}else{
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
}
}
}
출처 : http://stackoverflow.com/a/12283909/3534559
위 width 상태에 맞춰 height를 구하여 설정하는 커스텀 ImageView 이다.
참고하세요.
'나의 플랫폼 > 안드로이드' 카테고리의 다른 글
[Android] TextView에 HTML 코드를 넣을 때 (0) | 2016.01.05 |
---|---|
[Android] 강제적으로 Toolbar arrow 변경 (0) | 2016.01.05 |
[Android] GifView (0) | 2015.12.23 |
[Android] can not run program svn (0) | 2015.12.22 |
[Android] Viewpager가 갱신이 되 않는 현상. (0) | 2015.12.22 |