]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blobdiff - app/src/main/res/layout/domains_list.xml
Partial Domain implementation.
[PrivacyBrowserAndroid.git] / app / src / main / res / layout / domains_list.xml
index 3d5fb64358c8979e1767225d39ca1074b007351a..6864bcbc4a885e32844c8796b22817966e8d43b3 100644 (file)
   You should have received a copy of the GNU General Public License
   along with Privacy Browser.  If not, see <http://www.gnu.org/licenses/>. -->
 
-<android.support.v7.widget.RecyclerView
+<!-- `android:dividerHeight` must be specified with `android:divider` or the height will be `0dp`.  In our case we want the height to be `0dp`. -->
+<ListView
+    android:id="@+id/domains_listview"
     xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:tools="http://schemas.android.com/tools"
+    tools:context=".activities.DomainsList"
     android:layout_height="match_parent"
-    android:layout_width="match_parent"/>
\ No newline at end of file
+    android:layout_width="match_parent"
+    android:divider="@color/white"
+    android:dividerHeight="0dp" />
\ No newline at end of file