Project

General

Profile

Design and functionalities » History » Version 29

Miguel Rocha, 06/01/2023 23:49

1 1 Miguel Rocha
h1. Design and functionalities
2 1 Miguel Rocha
3 8 Miguel Rocha
{{>toc}} 
4 8 Miguel Rocha
5 28 João Samuel Mendo Pousão Gatta
When developing an Android Application, several parameters must be considered to deliver the intended functionalities without cluttering and compromisation of the user experience. This is especially important in applications that aim to improve health-related behaviors. In this chapter, the group thought process when faced with this paradigm will be discussed. It is important to note that since the app is heavily dependent on the Vital Jacket device, most of the functionalities and even design choices were made around this factor. Because this is a device used for more medical-oriented purposes, the group assumed that the target segment would be individuals with basic knowledge or at least curious to learn about general fitness terms and concepts.
6 10 Miguel Rocha
7 28 João Samuel Mendo Pousão Gatta
One of the initial concerns when developing any mobile application is the User Experience (UI) or, in other words, creating a positive experience for the user when interacting with the developed application. For this, the user's hedonic needs were accounted by presenting a clean design and coherent color pallet throughout the various activities. This was achieved by choosing a dark mode as the default theme with vibrant arrangements of red combined with orange and blue. The same color style was purposefully maintained with the careful selection of the several icons chosen. 
8 1 Miguel Rocha
9 10 Miguel Rocha
h2. Logo Activity
10 4 Miguel Rocha
11 18 Miguel Rocha
When the user chooses to open the App, he is initially presented with the Logo Page comprising both the Icon and a Slogan, as depicted in Figure 1. This Activity lasts for 3 seconds and serves no functionality, being purely cosmetic. This was timed with a simple handler, a special Android object that will be further discussed below.
12 1 Miguel Rocha
13 16 Miguel Rocha
p=. !{width:250px}Logo.jpg!
14 1 Miguel Rocha
_Fig. 1: StepNCount initial page._  
15 10 Miguel Rocha
16 1 Miguel Rocha
h2. Search Bluetooth Device
17 1 Miguel Rocha
18 23 Miguel Rocha
When the cycle of the initial activity comes to an end, the App switches automatically to the activity responsible for choosing the device to which the phone will connect. When the user selects the desired device, the Button will update its view with the MAC address chosen, serving as visual confirmation of the desired selection, as illustrated in Figure 2. Subsequently to the selection and button press, the App will wait 6 seconds but now with a designed purpose. This is done so the App has time to send the MAC address to the desired class, namely the service, and to perform the connection to the BioLib library. Once the connection is done, the user will be guided to the Main Page of the App, where the data from the week is displayed.
19 15 Miguel Rocha
20 16 Miguel Rocha
p=. !{width:250px}searchBT.jpg! !{width:250px}searchBTMAC.jpg!
21 21 Miguel Rocha
_Fig. 2: Activity that pulls the MAC address of the desired device._  
22 1 Miguel Rocha
23 18 Miguel Rocha
h3. Foreground Service
24 1 Miguel Rocha
25 28 João Samuel Mendo Pousão Gatta
From here, a few considerations had to be taken into account. Because the App should do most of its work when the user is not touching the phone (e.g. exercising) or even using other Apps (e.g. Spotify), the acquisition process had to be handled in the background. From this, Android provides many options for this type of operation, namely the Service class, which can be further subdivided into Intent Services, Job Intents, and Foreground Services. Albeit seeming like all these options could work, only one of these services is suited for our application. Since Android 8.0 (API 26), limitations to the execution of full Background services were implemented[1]. The services are allowed to run when the App is being used but are killed shortly after the App goes to the background. This was to minimize Apps exploiting the device's resources without them knowing about it. Because of this, the only service that can run almost indefinitely and without restrictions is the Foreground Service[2], making it the obvious choice for our purposes. With this, the acquisition could be running even if the App is closed and the screen is locked. The only downside is that a notification will be displayed as long as the Service is running. 
26 1 Miguel Rocha
27 18 Miguel Rocha
h3. Handler Thread
28 1 Miguel Rocha
29 1 Miguel Rocha
Despite, working as intended, a foreground service is not capable of handling the acquisition alone. This is because these services, even though are running independently of the lifecycle of the Activities[3], still run on the Main thread, that is, the UI thread. Trying to update the required UI views while also acquiring data would crash the App. Because of this, another thread had to be created to handle the acquisition within the Service running. When a thread is created, it loops through a Message Queue, each corresponding to a different task running sequentially independently from the UI thread. The Handler is the object responsible for integrating the Messages into the Queue. Furthermore, the Handler is also responsible for the actual execution of the Messages and serves as a communicator between the Acquisition Process and the UI Thread. A visual representation of this can be seen in Figure 3.
30 1 Miguel Rocha
31 28 João Samuel Mendo Pousão Gatta
Once running, the service can only be destroyed if the connection to the device is lost or it connects to a non-BioLib device. This was done because the App is only meant to work with a Vital Jacket device. Furthermore, if the service is destroyed while the user is actively using the App, this Search Activity will be started from the service itself. Therefore, this activity will be launched independently of the Activity the user is in, not allowing the user to use it without a valid connection. Moreover, communication with the database is also performed within this service, not allowing the App to lose data even if everything crashes. Once started again, the service loads the data from this database and updates the Views of the main page with the latest values for the steps, calories burned, time and distance walked or run. 
32 23 Miguel Rocha
33 1 Miguel Rocha
p=. !{width:400px}handler.png!
34 1 Miguel Rocha
_Fig. 3: Visual representation of the different parts of a Thread. Adapted from[5]_
35 1 Miguel Rocha
36 23 Miguel Rocha
h2. Results
37 23 Miguel Rocha
38 28 João Samuel Mendo Pousão Gatta
Once on the main page, the user can interactively visualize all the data from the week. All the progress bars and graphs are updated in real-time, with the graph adjusting its size in case the amount of steps in that day surpass the maximum value of the week. The user can select one data point on the graph, which updates the day of the week with the UK local time, all the values of calories burned, time, and distance walked or run corresponding to the day selected are updated in the circular progress bars. Furthermore, the progress of that day corresponding to each one of those measures is also set. All of this can happen while the data point related to the current day in the graph keeps updating. Due to not providing an indicator of the battery of the device, an important factor for its correct use, a battery indicator was designed on this page as well. Four drawables were selected to represent a different stage of the battery depending on thresholds alongside the percentage left. Moreover, a status detection with three drawables is also provided (Figure 4). Finally, once the progress bar becomes full (in red), the user will be notified of completing the goal defined in the Goals Page, accessed through the button of the same name.
39 23 Miguel Rocha
40 25 Miguel Rocha
p=. !{width:250px}resting.jpg! !{width:250px}Walking.jpg! !{width:250px}Running.jpg!
41 1 Miguel Rocha
_Fig. 4: The main screen of the Application_
42 26 Miguel Rocha
43 26 Miguel Rocha
44 26 Miguel Rocha
h2. Goals page
45 26 Miguel Rocha
46 27 Miguel Rocha
As the name suggests, this is where the user defines its goals for all the measured values. A value for the calculated TDEE is provided to better inform the user of its energy profile depending on his/her body type. From this, a recommended calorie goal is also provided for each user depending on the TDEE value.
47 27 Miguel Rocha
48 26 Miguel Rocha
p=. !{width:250px}goals.jpg! 
49 26 Miguel Rocha
_Fig. 5: User-defined goals_
50 26 Miguel Rocha
51 26 Miguel Rocha
h2. Configs
52 27 Miguel Rocha
53 27 Miguel Rocha
Finally, the configuration page is where the user provides the info to personalize the App experience. This page is actually the second page appearing if the user is using the App for the first time, showing before being allowed to search a Vital Jacket device.
54 26 Miguel Rocha
55 26 Miguel Rocha
p=. !{width:250px}config.jpg! 
56 26 Miguel Rocha
_Fig. 6: User input page_
57 22 Mariana Calado
58 29 Miguel Rocha
h2. Performance
59 29 Miguel Rocha
60 29 Miguel Rocha
Because our App had many things happening within the service, a close look at the performance was done using the built-in performance tool of android studio[6]. A general view of the App performance is depicted in Figure 7 whereas, in Figure 8, a closer look at the performance of the thread can be seen.
61 29 Miguel Rocha
62 29 Miguel Rocha
p=. !{width:700px}perf.png! 
63 29 Miguel Rocha
_Fig. 7: Summary of the CPU, memory, and energy usage of the StepNCount App._
64 29 Miguel Rocha
65 29 Miguel Rocha
p=. !{width:700px}prof3.png! 
66 29 Miguel Rocha
_Fig. 8: CPU thread usage_
67 29 Miguel Rocha
68 1 Miguel Rocha
[1]https://developer.android.com/about/versions/oreo/background
69 1 Miguel Rocha
[2]https://developer.android.com/guide/components/foreground-services
70 18 Miguel Rocha
[3]https://developer.android.com/guide/components/activities/activity-lifecycle
71 18 Miguel Rocha
[4]https://developer.android.com/guide/components/services
72 18 Miguel Rocha
[5]https://www.youtube.com/watch?v=TN-CGfzvBhc&t=1221s
73 29 Miguel Rocha
[6]https://developer.android.com/studio/profile/cpu-profiler