Back to project page AppSearchWidget.
The source code is released under:
Apache License
If you think the Android project AppSearchWidget listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.example.testwidget; import java.util.Comparator; public class AppLaunchCountComparator implements Comparator<ApplicationListItem> { @Override public int compare(ApplicationListItem item1, ApplicationListItem item2) { return item1.getLaunchCount() - item2.getLaunchCount(); } }