반응형
Android/개념 및 예제2019. 2. 15. 15:54RecyclerView Grid Layout에서 이미지 일정한 크기로 보여주기

RecyclerView에 GridLayoutManager를 적용하여 그리드를 만든 후 이미지 크기가 일정하게 보이지 않는 문제를 해결했습니다. 1. RelativeLayout를 상속한 SquareLayout 클래스를 추가합니다. package com.tistory.webnautes.imagesaveinsqlite; import android.annotation.TargetApi; import android.content.Context; import android.os.Build; import android.util.AttributeSet; import android.widget.RelativeLayout; /** * Created by Lincoln on 05/04/16. */ class SquareLa..

Android/개념 및 예제2019. 2. 14. 19:54Android RecyclerView를 사용하여 GridView 구현하기

RecyclerView를 사용하는데 익숙하다면 그리드뷰를 금방 만들 수 있습니다. Android RecyclerView 간단한 예제https://webnautes.tistory.com/1214 기존에 사용하던 LinearLayoutManager 대신에 GridLayoutManager 를 사용하도록 해주면 됩니다. //private LinearLayoutManager mLinearLayoutManager; private GridLayoutManager mGridLayoutManager; . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . // mLinearLayoutManager = new ..

반응형
image