]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blobdiff - app/src/main/res/layout/appbar_spinner_dropdown_item.xml
Hide the tabs in full screen mode.
[PrivacyBrowserAndroid.git] / app / src / main / res / layout / appbar_spinner_dropdown_item.xml
index d71b180d88712e6aaf6153d4d72f6a684e55b9bc..a65867505cce867602f50a3ed6d7968758c961e3 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="utf-8"?>
 
 <!--
-  Copyright © 2017-2018 Soren Stoutner <soren@stoutner.com>.
+  Copyright © 2017-2019 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/>. -->
 
-<!-- A checked text view allows the color of the text to be changed when it is selected (checked). -->
-<CheckedTextView
+<com.stoutner.privacybrowser.views.CheckedLinearLayout
     xmlns:android="http://schemas.android.com/apk/res/android"
-    android:id="@+id/spinner_item_textview"
+    xmlns:tools="http://schemas.android.com/tools"
     android:layout_height="wrap_content"
     android:layout_width="match_parent"
-    android:maxLines="1"
-    android:ellipsize="end"
-    android:paddingStart="20dp"
-    android:paddingEnd="20dp"
-    android:paddingTop="8dp"
-    android:paddingBottom="8dp"
-    android:textSize="18sp"
-    android:textColor="?attr/appbarSpinnerTextColorSelector"
-    android:background="?attr/spinnerBackground" />
\ No newline at end of file
+    android:orientation="horizontal"
+    android:background="?attr/spinnerBackground" >
+
+    <ImageView
+        android:id="@+id/spinner_item_imageview"
+        android:layout_height="30dp"
+        android:layout_width="30dp"
+        android:layout_gravity="center_vertical"
+        android:layout_marginStart="10dp"
+        tools:ignore="contentDescription" />
+
+    <!-- A checked text view allows the color of the text to be changed when it is selected (checked). -->
+    <CheckedTextView
+        android:id="@+id/spinner_item_textview"
+        android:layout_height="wrap_content"
+        android:layout_width="match_parent"
+        android:maxLines="1"
+        android:ellipsize="end"
+        android:paddingStart="20dp"
+        android:paddingEnd="20dp"
+        android:paddingTop="8dp"
+        android:paddingBottom="8dp"
+        android:textSize="18sp"
+        android:textColor="?attr/appbarSpinnerTextColorSelector" />
+</com.stoutner.privacybrowser.views.CheckedLinearLayout>
\ No newline at end of file