]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blobdiff - app/src/main/res/layout-w900dp/domains_list.xml
Create a dark theme for `DomainsActivity` and `DomainsSettingsActivity`.
[PrivacyBrowserAndroid.git] / app / src / main / res / layout-w900dp / domains_list.xml
index 4d6df86c20961d365b73fa03923da3d4f982943b..a97d59ec88c3f827384dac590061b4dac6c68a43 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="utf-8"?>
 
 <!--
-  Copyright 2017 Soren Stoutner <soren@stoutner.com>.
+  Copyright © 2017 Soren Stoutner <soren@stoutner.com>.
 
   This file is part of Privacy Browser <https://www.stoutner.com/privacy-browser>.
 
@@ -22,7 +22,7 @@
 <LinearLayout
     xmlns:android="http://schemas.android.com/apk/res/android"
     xmlns:tools="http://schemas.android.com/tools"
-    tools:context=".activities.DomainsList"
+    tools:context=".activities.DomainsActivity"
     android:layout_width="match_parent"
     android:layout_height="match_parent"
     android:orientation="horizontal"
     android:divider="?android:attr/dividerHorizontal"
     android:showDividers="middle" >
 
+    <!-- `android:choiceMode="singleChoice" allows a selected domain to be highlighted. -->
     <!-- `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"
         android:layout_height="match_parent"
         android:layout_width="0dp"
-        android:layout_weight="1"
-        android:divider="@color/white"
+        android:layout_weight="2"
+        android:choiceMode="singleChoice"
+        android:divider="@color/transparent"
         android:dividerHeight="0dp" />
 
-    <FrameLayout
-        android:id="@+id/domains_list_framelayout"
+    <ScrollView
+        android:id="@+id/domain_settings_scrollview"
         android:layout_height="match_parent"
         android:layout_width="0dp"
         android:layout_weight="3" />