File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
app/src/main/java/fr/free/nrw/commons/nearby/fragments Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change 2727import androidx .constraintlayout .widget .ConstraintLayout ;
2828import androidx .fragment .app .FragmentManager ;
2929import androidx .fragment .app .FragmentTransaction ;
30+ import androidx .recyclerview .widget .DividerItemDecoration ;
3031import androidx .recyclerview .widget .LinearLayoutManager ;
3132import androidx .recyclerview .widget .RecyclerView ;
3233
@@ -210,6 +211,8 @@ public void initNearbyFilter() {
210211 });
211212
212213 recyclerView .setHasFixedSize (true );
214+ recyclerView .addItemDecoration (new DividerItemDecoration (getContext (),
215+ DividerItemDecoration .VERTICAL ));
213216
214217 LinearLayoutManager linearLayoutManager = new LinearLayoutManager (getActivity ());
215218 linearLayoutManager .setOrientation (LinearLayoutManager .VERTICAL );
You can’t perform that action at this time.
0 commit comments