336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
RecyclerView는 각 Row에 Decoration을 줄 수가 있습니다.
이때 사용하는 클래스가 RecyclerView.ItemDecoration 입니다.
간단하게 리스트 사이에 간격을 별려주는 소스 입니다.
public class CustomRecyclerDecoration extends RecyclerView.ItemDecoration {
private final int divHeight;
public CustomRecyclerDecoration(int divHeight) {
this.divHeight = divHeight;
}
@Override
public void getItemOffsets(Rect outRect, View view, RecyclerView parent, RecyclerView.State state) {
super.getItemOffsets(outRect, view, parent, state);
outRect.top = divHeight;
}
}
참고하세요~
'나의 플랫폼 > 안드로이드' 카테고리의 다른 글
[Android] android.content.res.Resources$NotFoundException: String resource ID (0) | 2015.12.18 |
---|---|
[Andoird] Button 클릭 시, textColor 변경 (0) | 2015.12.17 |
[Android] RecyclerView Adpater Refresh (2) | 2015.12.17 |
[Android] Background partial concurrent mark sweep GC freed (8) | 2015.12.16 |
[Android] RecyclerView 에서 각 View 크기 조절 (0) | 2015.12.15 |