mirror of
https://github.com/FossifyOrg/Gallery.git
synced 2024-11-27 06:57:59 +01:00
26 lines
1,005 B
XML
26 lines
1,005 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
tools:ignore="AppCompatResource">
|
|
<item
|
|
android:id="@+id/temporarily_show_hidden"
|
|
android:showAsAction="never"
|
|
android:title="@string/temporarily_show_hidden"
|
|
app:showAsAction="never" />
|
|
<item
|
|
android:id="@+id/stop_showing_hidden"
|
|
android:showAsAction="never"
|
|
android:title="@string/stop_showing_hidden"
|
|
app:showAsAction="never" />
|
|
<item
|
|
android:id="@+id/temporarily_show_excluded"
|
|
android:showAsAction="never"
|
|
android:title="@string/temporarily_show_excluded"
|
|
app:showAsAction="never" />
|
|
<item
|
|
android:id="@+id/stop_showing_excluded"
|
|
android:showAsAction="never"
|
|
android:title="@string/stop_showing_excluded"
|
|
app:showAsAction="never" />
|
|
</menu>
|