[ANDROID] 어떻게 안드로이드의 원형 이미지 뷰를 만드는 방법? [복제]
ANDROID어떻게 안드로이드의 원형 이미지 뷰를 만드는 방법? [복제]
해결법
-
1.나도 내가 코드를 아래에, 당신은 그에 따라 수정할 수 있습니다 사용, 둥근 이미지 뷰를 필요 :
나도 내가 코드를 아래에, 당신은 그에 따라 수정할 수 있습니다 사용, 둥근 이미지 뷰를 필요 :
import android.content.Context; import android.graphics.Bitmap; import android.graphics.Bitmap.Config; import android.graphics.Canvas; import android.graphics.Color; import android.graphics.Paint; import android.graphics.PorterDuff.Mode; import android.graphics.PorterDuffXfermode; import android.graphics.Rect; import android.graphics.drawable.BitmapDrawable; import android.graphics.drawable.Drawable; import android.util.AttributeSet; import android.widget.ImageView; public class RoundedImageView extends ImageView { public RoundedImageView(Context context) { super(context); } public RoundedImageView(Context context, AttributeSet attrs) { super(context, attrs); } public RoundedImageView(Context context, AttributeSet attrs, int defStyle) { super(context, attrs, defStyle); } @Override protected void onDraw(Canvas canvas) { Drawable drawable = getDrawable(); if (drawable == null) { return; } if (getWidth() == 0 || getHeight() == 0) { return; } Bitmap b = ((BitmapDrawable) drawable).getBitmap(); Bitmap bitmap = b.copy(Bitmap.Config.ARGB_8888, true); int w = getWidth(); @SuppressWarnings("unused") int h = getHeight(); Bitmap roundBitmap = getCroppedBitmap(bitmap, w); canvas.drawBitmap(roundBitmap, 0, 0, null); } public static Bitmap getCroppedBitmap(Bitmap bmp, int radius) { Bitmap sbmp; if (bmp.getWidth() != radius || bmp.getHeight() != radius) { float smallest = Math.min(bmp.getWidth(), bmp.getHeight()); float factor = smallest / radius; sbmp = Bitmap.createScaledBitmap(bmp, (int) (bmp.getWidth() / factor), (int) (bmp.getHeight() / factor), false); } else { sbmp = bmp; } Bitmap output = Bitmap.createBitmap(radius, radius, Config.ARGB_8888); Canvas canvas = new Canvas(output); final String color = "#BAB399"; final Paint paint = new Paint(); final Rect rect = new Rect(0, 0, radius, radius); paint.setAntiAlias(true); paint.setFilterBitmap(true); paint.setDither(true); canvas.drawARGB(0, 0, 0, 0); paint.setColor(Color.parseColor(color)); canvas.drawCircle(radius / 2 + 0.7f, radius / 2 + 0.7f, radius / 2 + 0.1f, paint); paint.setXfermode(new PorterDuffXfermode(Mode.SRC_IN)); canvas.drawBitmap(sbmp, rect, rect, paint); return output; } }
from https://stackoverflow.com/questions/16208365/how-to-create-a-circular-imageview-in-android by cc-by-sa and MIT license
'ANDROID' 카테고리의 다른 글
[ANDROID] 어떻게 안드로이드에서 특정 범위에서 임의의 숫자를 생성 할 수 있습니까? [복제] (0) | 2020.11.05 |
---|---|
[ANDROID] 어떻게 안드로이드 응용 프로그램의 모든 버튼에 스타일을 적용 할 (0) | 2020.11.05 |
[ANDROID] 개조를 사용하여 구문 분석 동적 키 JSON 문자열 (0) | 2020.11.05 |
[ANDROID] 터치에 비트 맵의 특정 영역을 투명하게 (0) | 2020.11.05 |
[ANDROID] 터치 이벤트와 캔버스의 이미지 (0) | 2020.11.05 |