Android/UI
-
[UI] RecyclerView 공부Android/UI 2021. 7. 31. 13:04
RecyclerView public class RecyclerView extends ViewGroup implements ScrollingView....etc ViewHolder public static abstract class RecyclerView.ViewHolderpublic static abstract class RecyclerView.Adapter RecyclerView.ViewHolder Adapter public static abstract class RecyclerView.Adapter RecyclerView.Adapter RecyclerView.LayoutManager public static abstract class RecyclerView.LayoutManager Known dire..
-
[UI] 이미지 관련Android/UI 2021. 7. 28. 11:19
기록용 메모장. 상시 추가될 예정 imageView.getDrawable(); //return Drawable(이미지뷰에 설정된) or null(이미지뷰에 설정된 Drawable이 없으면) BitmapDrawable (비트맵 파일) - 비트맵 그래픽 파일 .png .jpg .gif에 해당 imageView에서 가져온 Drawable이 BitmapDrawable이라면 Drawable은 BitmapDrawable으로 형변환이 가능 //ImageView에 설정된 Drawable에서 Bitmap 추출 private Bitmap bitmapFromDrawable(ImageView imageView) { Drawable drawable=imageView.getDrawable(); if (drawable == nul..