]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blobdiff - app/src/main/res/layout/url_history_dialog.xml
Updates about_licenses, adding the full text of the Apache License 2.0 and the 3...
[PrivacyBrowserAndroid.git] / app / src / main / res / layout / url_history_dialog.xml
index 0a32dfcbfe0a8d173a1bde9e81ad2b0cf451964d..1efcfacc7b5c77bafe2b4efa594c17636c37b8c8 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="utf-8"?>
 
 <!--
-  Copyright 2016 Soren Stoutner <soren@stoutner.com>.
+  Copyright © 2016-2017 Soren Stoutner <soren@stoutner.com>.
 
   This file is part of Privacy Browser <https://www.stoutner.com/privacy-browser>.
 
   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:dividerHeight` must be specified with `android:divider` or the height will be `0dp`.  In our case we want the height to be `0dp`. -->
 <ListView
     xmlns:android="http://schemas.android.com/apk/res/android"
     android:id="@+id/history_listview"
     android:layout_height="wrap_content"
-    android:layout_width="wrap_content" />
\ No newline at end of file
+    android:layout_width="wrap_content"
+    android:divider="@color/white"
+    android:dividerHeight="0dp" />
\ No newline at end of file