The category chooser is where the user will select how to file their expense claims. There'll be a fairly small number of these, and they will be represented by icons in the user interface. Fortunately for Android developers, Material specifies a huge range of standard icons, and Android Studio has features to import them as bitmap or vector graphics files. When deciding whether to use bitmap images or SVGs, it's important to consider the trade-off between these two formats, specifically in relation to Android. Especially so since in Android, multiple copies of a bitmap are often provided for different screen sizes and densities, leading to much higher-quality scaling (as most will only ever be scaled down slightly). Here's a quick table to compare them:
For the category chooser widget, you'll be importing vector graphics icons and using them as radio buttons. Let's get things started:
In the files view to the extreme left of Android Studio, right-click on the res directory and select New, Vector Asset to open the vector import tool:
Where it says Icon, click on the button with the Android robot.
Use the search box at the top-left of the dialog to find the "hotel" icon, and select it.
Click on OK to return to the import tool.
The import tool will have changed the proposed name to ic_hotel_black_24dp; change this to ic_accommodation_black:
In the Size boxes, select the Override checkbox and change the size to 32dpX32dp.
Click on Next and then on Finish to complete the import.
Repeat this process, and find the room service icon. Name this one ic_food_black, and don't forget to change its size to 32dp X32dp.
Repeat this for the airport shuttle icon. This is ic_transport_black, and again, change its size to 32dp X32dp.
Repeat and find the local movies icon; name this ic_entertainment_black and remember to change its size to 32dp X32dp.
Find the "business center" icon and name it ic_business_black; again, change its size to 32dp X32dp.
Finally, find the all inclusive icon, name it ic_other_black, and override its size to 32dp X32dp.
Now you have a collection of black icons that will serve as the basis for your category selector.