File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
tableview/src/main/java/com/evrencoskun/tableview Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -355,6 +355,7 @@ public void setShowHorizontalSeparators(boolean showSeparators) {
355
355
this .mShowHorizontalSeparators = showSeparators ;
356
356
}
357
357
358
+ @ Override
358
359
public boolean isShowVerticalSeparators () {
359
360
return mShowVerticalSeparators ;
360
361
}
@@ -599,14 +600,15 @@ public DividerItemDecoration getHorizontalItemDecoration() {
599
600
return mHorizontalItemDecoration ;
600
601
}
601
602
602
- private DividerItemDecoration getVerticalItemDecoration () {
603
+ @ Override
604
+ public DividerItemDecoration getVerticalItemDecoration () {
603
605
if (mVerticalItemDecoration == null ) {
604
606
mVerticalItemDecoration = createItemDecoration (DividerItemDecoration .VERTICAL );
605
607
}
606
608
return mVerticalItemDecoration ;
607
609
}
608
610
609
- private DividerItemDecoration createItemDecoration (int orientation ) {
611
+ protected DividerItemDecoration createItemDecoration (int orientation ) {
610
612
Drawable divider = ContextCompat .getDrawable (getContext (), R .drawable .cell_line_divider );
611
613
612
614
// That means; There is a custom separator color from user.
You can’t perform that action at this time.
0 commit comments