Android Rounded ImageView
public class UnitConverter { public static int dpToPx(int dp) { return (int) (dp * Resources.getSystem().getDisplayMetrics().density); } public static int pxToDp(int px) { return (int) (px / Resources.getSystem().getDisplayMetrics().density); }} public class RoundedImageView extends ImageView { public RoundedImageView(Context context) { super(context); } public RoundedImageView(Context context, ..
모바일 프로그래밍
2016. 11. 19. 11:27
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday