[Android] Remove divider in Streams list view

Geoffrey Métais git at videolan.org
Thu Mar 5 12:20:27 CET 2015


vlc-ports/android | branch: master | Geoffrey Métais <geoffrey.metais at gmail.com> | Thu Mar  5 12:20:09 2015 +0100| [0028bc3e5004bfbc9b98838de84dd077fe6a159c] | committer: Geoffrey Métais

Remove divider in Streams list view

> http://git.videolan.org/gitweb.cgi/vlc-ports/android.git/?a=commit;h=0028bc3e5004bfbc9b98838de84dd077fe6a159c
---

 vlc-android/src/org/videolan/vlc/gui/MRLPanelFragment.java |    1 -
 1 file changed, 1 deletion(-)

diff --git a/vlc-android/src/org/videolan/vlc/gui/MRLPanelFragment.java b/vlc-android/src/org/videolan/vlc/gui/MRLPanelFragment.java
index 2a1f3ca..7ed603c 100644
--- a/vlc-android/src/org/videolan/vlc/gui/MRLPanelFragment.java
+++ b/vlc-android/src/org/videolan/vlc/gui/MRLPanelFragment.java
@@ -63,7 +63,6 @@ public class MRLPanelFragment extends Fragment implements View.OnKeyListener, Te
         mRecyclerView = (RecyclerView) v.findViewById(R.id.mrl_list);
         mLayoutManager = new LinearLayoutManager(getActivity());
         mRecyclerView.setLayoutManager(mLayoutManager);
-        mRecyclerView.addItemDecoration(new DividerItemDecoration(getActivity(), DividerItemDecoration.VERTICAL_LIST));
         mAdapter = new MRLAdapter(mHistory);
         mRecyclerView.setAdapter(mAdapter);
 



More information about the Android mailing list