Package com. dwarshb. commute. presentation. mainScreen. ui. vehicle
Types
Link copied to clipboard
class VehicleListAdapter(context: Context) : RecyclerView.Adapter<VehicleListAdapter.VehicleViewHolder>
Content copied to clipboard
VehicleListAdapter is a Adapter class which is used to manage the list of vehicle. It is used to manage each item of the vehicle list and perform required operations such as OnItemClick.
Link copied to clipboard
VehicleFragment is used to display list of vehicles fetched from API. With the help of VehicleListViewModel
it manages the list and help to filter it based on its parameter. It also includes VehicleListAdapter which is used to manage each item of vehicleList. On click of each item in VehicleList. It will open MapsActivity
which will display the current position of vehicle and other information.
Link copied to clipboard
VehicleListViewModel is used to handle the operation which are used to manage VehicleListFragment.