]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blobdiff - app/src/main/res/layout/url_history_dialog.xml
Update the Permission and the Privacy Policy tabs. Add a Clear History button.
[PrivacyBrowserAndroid.git] / app / src / main / res / layout / url_history_dialog.xml
index 0a32dfcbfe0a8d173a1bde9e81ad2b0cf451964d..b5e14f705f7fb1f64f6c04a8d83ea8e03d73d231 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: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