]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blobdiff - app/src/main/res/menu/logcat_options_menu.xml
First wrong button text in View Headers in night theme. https://redmine.stoutner...
[PrivacyBrowserAndroid.git] / app / src / main / res / menu / logcat_options_menu.xml
index d635b56f83f44152a2b1668fa484415a52a286e4..4da479730095e3d633c85b5c4ced5ac8c0a6321c 100644 (file)
@@ -1,9 +1,9 @@
 <?xml version="1.0" encoding="utf-8"?>
 
 <!--
-  Copyright © 2015-2020,2022 Soren Stoutner <soren@stoutner.com>.
+  Copyright 2015-2020, 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
     xmlns:android="http://schemas.android.com/apk/res/android"
     xmlns:app="http://schemas.android.com/apk/res-auto" >
 
-    <!-- `android:iconTint` can be used once the minimum API >= 26 instead of including a separate drawable for each theme. -->
     <item
-        android:id="@+id/copy"
-        android:title="@string/copy"
+        android:id="@+id/search"
+        android:title="@string/search"
         android:orderInCategory="10"
-        android:icon="?attr/copyIcon"
+        android:icon="@drawable/search"
+        app:showAsAction="ifRoom" />
+
+    <item
+        android:id="@+id/copy"
+        android:title="@string/copy_string"
+        android:orderInCategory="20"
+        android:icon="@drawable/copy"
         app:showAsAction="always" />
 
-    <!-- `android:iconTint` can be used once the minimum API >= 26 instead of including a separate drawable for each theme. -->
     <item
         android:id="@+id/save"
         android:title="@string/save"
-        android:orderInCategory="20"
-        android:icon="?attr/saveIcon"
+        android:orderInCategory="30"
+        android:icon="@drawable/save"
         app:showAsAction="ifRoom" />
 
-    <!-- `android:iconTint` can be used once the minimum API >= 26 instead of including a separate drawable for each theme. -->
     <item
         android:id="@+id/clear"
         android:title="@string/clear"
-        android:orderInCategory="30"
-        android:icon="?attr/closeIcon"
+        android:orderInCategory="40"
+        android:icon="@drawable/close"
         app:showAsAction="ifRoom" />
-</menu>
\ No newline at end of file
+</menu>