Search⌘ K
AI Features

Overview

Explore how to implement search and sort functionalities in an Android travel blog application. Learn to use Java's Collections.sort, Comparator, and String.contains methods to help users quickly find and organize blog entries on mobile devices with limited screen space.

We'll cover the following...

Mobile devices usually have small screens in comparison to laptops, which means it’s harder to present and work with big amounts of data. That’s why we are going to implement search and sort functionality to help the user find relevant information faster.

Most of the actions related to the screen are places in the Toolbar menu, and that’s where we are ...