]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blobdiff - app/src/main/res/layout/move_to_folder_item_linearlayout.xml
Remove all the custom attr entries. https://redmine.stoutner.com/issues/1189
[PrivacyBrowserAndroid.git] / app / src / main / res / layout / move_to_folder_item_linearlayout.xml
index 5fe04790c4676f1660ff87e2f9213621e75bf8d9..76f041c693bee09dcd8e8599df34b3870d0f864f 100644 (file)
@@ -1,9 +1,9 @@
 <?xml version="1.0" encoding="utf-8"?>
 
 <!--
-  Copyright © 2016-2017,2022 Soren Stoutner <soren@stoutner.com>.
+  Copyright 2016-2017, 2022-2024 Soren Stoutner <soren@stoutner.com>.
 
-  This file is part of Privacy Browser Android <https://www.stoutner.com/privacy-browser-android>.
+  This file is part of Privacy Browser Android <https://www.stoutner.com/privacy-browser-android/>.
 
   Privacy Browser Android is free software: you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   along with Privacy Browser Android.  If not, see <http://www.gnu.org/licenses/>. -->
 
 <LinearLayout
-    android:id="@+id/move_to_folder_item_linearlayout"
     xmlns:android="http://schemas.android.com/apk/res/android"
     xmlns:tools="http://schemas.android.com/tools"
     android:layout_height="wrap_content"
     android:layout_width="match_parent"
     android:orientation="horizontal"
-    android:background="?attr/listSelectorDrawable"
+    android:background="@drawable/list_selector"
     tools:ignore="UseCompoundDrawables">
 
+    <!-- Subfolder spacer. -->
+    <TextView
+        android:id="@+id/subfolder_spacer_textview"
+        android:layout_height="wrap_content"
+        android:layout_width="wrap_content"
+        android:layout_marginStart="10dp" />
+
+    <!-- Folder icon. -->
     <ImageView
-        android:id="@+id/move_to_folder_icon"
+        android:id="@+id/folder_icon_imageview"
         android:layout_height="30dp"
         android:layout_width="30dp"
         android:layout_gravity="center_vertical"
-        android:layout_marginStart="10dp"
         tools:ignore="ContentDescription" />
 
+    <!-- Folder name. -->
     <TextView
-        android:id="@+id/move_to_folder_name_textview"
+        android:id="@+id/folder_name_textview"
         android:layout_height="wrap_content"
         android:layout_width="wrap_content"
         android:layout_margin="10dp"
         android:lines="1"
         android:textColor="?android:attr/textColorPrimary"
         android:textSize="22sp" />
-</LinearLayout>
\ No newline at end of file
+</LinearLayout>