forked from starfish23/mangafeed
-
Notifications
You must be signed in to change notification settings - Fork 227
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added search/sorting/mass enable/disable to catalouge sources
- Loading branch information
1 parent
dd214f9
commit 5448a16
Showing
8 changed files
with
186 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<?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"> | ||
<item | ||
android:id="@+id/action_search" | ||
android:title="@string/action_search" | ||
android:icon="@drawable/ic_search_white_24dp" | ||
app:showAsAction="collapseActionView|ifRoom" | ||
app:actionViewClass="androidx.appcompat.widget.SearchView"/> | ||
|
||
<item | ||
android:id="@+id/action_sort" | ||
android:title="@string/action_sort" | ||
android:icon="@drawable/ic_sort_white_24dp" | ||
app:showAsAction="ifRoom"> | ||
<menu> | ||
<group android:id="@+id/group" | ||
android:checkableBehavior="single"> | ||
<item | ||
android:id="@+id/action_sort_alpha" | ||
android:title="@string/action_sort_alpha"/> | ||
<item | ||
android:id="@+id/action_sort_enabled" | ||
android:title="@string/action_sort_enabled"/> | ||
</group> | ||
</menu> | ||
</item> | ||
</menu> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters