-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added public method to forcibly move checked items to bottom
- Loading branch information
1 parent
d55d1c1
commit cc88c47
Showing
5 changed files
with
33 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,20 @@ | ||
<menu xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<menu xmlns:app="http://schemas.android.com/apk/res-auto" | ||
xmlns:android="http://schemas.android.com/apk/res/android"> | ||
|
||
<item | ||
android:id="@+id/action_toggle_checklist" | ||
android:orderInCategory="100" | ||
android:showAsAction="always" | ||
android:title="@string/action_toggle_checklist" /> | ||
android:title="@string/action_toggle_checklist" | ||
app:showAsAction="ifRoom" /> | ||
<item | ||
android:id="@+id/action_move_to_bottom" | ||
android:orderInCategory="150" | ||
android:title="@string/action_move_to_bottom" | ||
app:showAsAction="never" /> | ||
<item | ||
android:id="@+id/settings" | ||
android:orderInCategory="200" | ||
android:showAsAction="never" | ||
android:title="@string/settings" /> | ||
android:title="@string/settings" | ||
app:showAsAction="never" /> | ||
|
||
</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